import { Headers } from 'got'; import { CMRResponseBody, CMRErrorResponseBody, ConceptType } from './types'; /** * Deletes a record from the CMR * * @param {string} type - the concept type. Choices are: collections, granules * @param {string} identifier - the record id * @param {string} provider - the CMR provider id * @param {Object} headers - the CMR headers * @returns {Promise.} the CMR response object */ declare function deleteConcept(type: ConceptType, identifier: string, provider: string, headers?: Headers): Promise; export = deleteConcept; //# sourceMappingURL=deleteConcept.d.ts.map