export declare function getItem(key: string): Promise; export declare function setItem(key: string, value: string): Promise; export declare function removeItem(key: string): Promise; export declare const ZustandStorage: { getItem: typeof getItem; setItem: typeof setItem; removeItem: typeof removeItem; };