interface StoreOptions { cas?: string; transcoder?: any; timeout?: number; } /** * Store a Document * if cas value is defined then the document is updated, otherwise it is inserted. */ export declare const store: (key: any, data: any, options: StoreOptions, collection: any) => Promise; export {};