export declare const createStorageMethods: (key: string) => {
    set: (value: any) => void;
    get: () => any;
};
