export declare const PARTIAL_UPDATE: (collection: string) => string; export declare const EXPORT_COLLECTIONS: string; export declare const CREATE_COLLECTION: string; export declare const LIST_COLLECTIONS: string; export declare const EDIT_COLLECTION: (collection: string) => string; export declare const DELETE_COLLECTION: (collection: string) => string; export declare const ADD_DOCUMENT: (collection: string) => string; export declare const BULK_ADD_DOCUMENTS: (collection: string) => string; export declare const EDIT_DOCUMENT: (collection: string, document: string) => string; export declare const BULK_EDIT_DOCUMENTS: (collection: string) => string; export declare const BULK_DELETE_DOCUMENTS: (collection: string, documents: string[]) => string; export declare const SEARCH_DOCUMENTS: (collection: string) => string;