export declare const canUseStorage: () => boolean;
export declare const readStored: (key?: string) => string | undefined;
export declare const writeStored: (key: string | undefined, value: string) => void;
