export interface PersistenceProvider { load: () => Promise; save: (data: T | undefined) => Promise; }