import { ModelMetadata } from '../model/interfaces/model-metadata.interface'; import { StatusExecution } from './types'; import { ModelTypes } from '../model/model.types'; /** * Async Function * Allow to create many document at once * * @param documents List of documents to create * * @return (ManyQueryResponse)[(/classes/queryresponse.html)] */ export declare const createMany: (metadata: ModelMetadata) => (documents: unknown[]) => Promise; /** * @ignore */ export declare const createManyCallback: (document: ModelTypes, metadata: ModelMetadata) => Promise;