import type { LinkStorage } from '@proton/link'; export declare class Storage implements LinkStorage { readonly keyPrefix: string; constructor(keyPrefix: string); write(key: string, data: string): Promise; read(key: string): Promise; remove(key: string): Promise; storageKey(key: string): string; }