export declare class ClientStorage { private readonly key; constructor(key: string); get(): TShape | undefined; set(state: TShape): void; drop(): void; }