export declare const createLocalStorage: (transport?: import("@novasamatech/host-api").Transport) => { clear(key: string): Promise; readBytes(key: string): Promise | undefined>; writeBytes(key: string, value: Uint8Array): Promise; readString(key: string): Promise; writeString(key: string, value: string): Promise; readJSON(key: string): Promise; writeJSON(key: string, value: unknown): Promise; }; export declare const hostLocalStorage: { clear(key: string): Promise; readBytes(key: string): Promise | undefined>; writeBytes(key: string, value: Uint8Array): Promise; readString(key: string): Promise; writeString(key: string, value: string): Promise; readJSON(key: string): Promise; writeJSON(key: string, value: unknown): Promise; };