import AuthManager from './auth-manager'; import EncryptionManager from './encryption-manager'; export declare type GetContentPayload = { key: string; }; export declare type GetContentResponsePayload = { id: string; content: string; }; export declare type CreateContentPayload = { key: string; content: string; }; export declare type CreateContentResponse = { id: string; }; export declare type DeleteTokenPayload = { key: string; id?: string; }; export declare type SwapContentPayload = { key: string; content: string; id?: string; }; export declare type SwapContentResponse = { id: string; }; export declare type StorageInformation = { used: number; available: number; }; export declare type Backup = { key: string; id: string; }[]; export declare type Config = { serviceUrl: string; authManager?: AuthManager; encryptionManager: EncryptionManager; }; //# sourceMappingURL=types.d.ts.map