export declare const STORAGE_KEY_AUTH = "auth";
export declare function storageGet(dir: string, key: string): Promise<string | null>;
export declare function storageSet(dir: string, key: string, value: string): Promise<void>;
