import { ModelMetadata } from '../model/interfaces/model-metadata.interface'; import { ManyQueryResponse, StatusExecution } from './types'; /** * Async Function * Deletes all of the documents that match conditions from the collection * Allows to use some filters and other useful options * * @param ids List of ids of the documents to delete * * @return (ManyQueryResponse)[(/classes/queryresponse.html)] */ export declare const removeMany: (metadata: ModelMetadata) => (ids: any) => Promise; /** * @ignore */ export declare const removeCallback: (id: string, metadata: ModelMetadata) => Promise;