import { BotApiVersion, Merge, SchemaBase, SinceLatest, SinceUntil } from '../types'; type v69 = ReturnType; type AllFeatures = v69; export type Schema = { '6.0': SchemaBase; '6.9': Merge; }; export type CloudStorage = SinceUntil | SinceLatest; declare function useCloudStorage69(): { setItem: { (key: string, value: string): Promise; (key: string, value: string, callback?: ((error: string | null, success: true | null) => void) | undefined): void; }; getItem: { (key: string): Promise; (key: string, callback?: ((error: string | null, value: string | null) => void) | undefined): void; }; getItems: { (keys: string[]): Promise>; (keys: string[], callback?: ((error: string | null, values: Record | null) => void) | undefined): void; }; removeItem: { (key: string): Promise; (key: string, callback?: ((error: string | null, success: true | null) => void) | undefined): void; }; removeItems: { (keys: string[]): Promise; (keys: string[], callback?: ((error: string | null, success: true | null) => void) | undefined): void; }; getKeys: { (): Promise; (callback?: ((error: string | null, keys: string[] | null) => void) | undefined): void; }; }; export declare function useCloudStorage(baseVersion: Version): import('../types').VersionedReturnType; export {};