/** * Custom storage adapter for AWS Amplify that persists to file system. * Used for CLI to maintain sessions between invocations. */ export declare const createFileStorage: () => { setItem: (key: string, value: string) => Promise; getItem: (key: string) => Promise; removeItem: (key: string) => Promise; clear: () => Promise; }; /** * Clears all stored session data. */ export declare const clearSession: () => Promise;