export declare const writeStorage: <T>(tag: string, value: T) => void;
export declare const readStorage: <T>(tag: string) => T | undefined;
export declare const deleteStorage: (tag: string) => void;
