export declare const W3mFrameStorage: {
    set(key: string, value: string): void;
    get(key: string): string | null;
    delete(key: string, social?: boolean): void;
};
