import { GenericObject } from './types'; export declare function setDocuments(collection: string, forms: GenericObject[]): Promise; export declare function setDocuments(collection: string, documentIds: string[], form: GenericObject): Promise; /** * @function setDocuments * Set multiple documents in a collection * @param {string} collection - The collection name * @param {string[]|GenericObject[]} arg2 - The documentIds or form objects; if forms are provided, documents with random ids are created * @param {GenericObject} [form] - The form to set/update if documentId is provided * @returns {Promise} - The documentId */ export default function setDocuments(collection: string, arg2: string[] | GenericObject[], form?: GenericObject): Promise; //# sourceMappingURL=setDocuments.d.ts.map