export declare abstract class XanoBaseStorage { abstract clear(): void; abstract getAll(): Record; abstract getItem(key: string): string | null; abstract removeItem(key: string): void; abstract setItem(key: string, value: string): void; } //# sourceMappingURL=base-storage.d.ts.map