import { Headers } from 'got'; import { CMRResponseBody, CMRErrorResponseBody, ConceptType } from './types'; /** * Posts a record of any kind (collection, granule, etc) to * CMR * * @param {string} type - the concept type. Choices are: collection, granule * @param {string} xmlString - the CMR record in xml * @param {string} identifierPath - the concept's unique identifier * @param {string} provider - the CMR provider id * @param {Object} headers - the CMR headers * @returns {Promise.} the CMR response object */ declare function ingestConcept(type: ConceptType, xmlString: string, identifierPath: string, provider: string, headers: Headers): Promise; export = ingestConcept; //# sourceMappingURL=ingestConcept.d.ts.map