import { ApiGatewayLambdaHttpProxyResponse, InvokeApiFunction } from './types'; /** * GET /reconciliationReports/{name} * * @param {Object} params - params * @param {string} params.prefix - the prefix configured for the stack * @param {string} params.name - report record name * @param {Function} params.callback - async function to invoke the api lambda * that takes a prefix / user payload. Defaults * to cumulusApiClient.invokeApifunction to invoke the * api lambda * @returns {Promise} - the report fetched by the API */ export declare const getReconciliationReport: (params: { prefix: string; name: string; callback?: InvokeApiFunction; }) => Promise; /** * Delete a reconciliation report from Cumulus via the API lambda * DELETE /reconciliationReports/${name} * * @param {Object} params - params * @param {string} params.prefix - the prefix configured for the stack * @param {string} params.name - report record name * @param {Function} params.callback - async function to invoke the api lambda * that takes a prefix / user payload. Defaults * to cumulusApiClient.invokeApi function to invoke the * api lambda * @returns {Promise} - the delete confirmation from the API */ export declare const deleteReconciliationReport: (params: { prefix: string; name: string; callback?: InvokeApiFunction; }) => Promise; /** * Post a request to the reconciliationReports API * POST /reconciliationReports * * @param {Object} params - params * @param {string} params.prefix - the prefix configured for the stack * @param {Object} params.request - request body to post * @param {Function} params.callback - async function to invoke the api lambda * that takes a prefix / user payload. Defaults * to cumulusApiClient.invokeApifunction to invoke the api lambda * @returns {Promise} - promise that resolves to the output of the API lambda */ export declare function createReconciliationReport(params: { prefix: string; request: unknown; callback?: InvokeApiFunction; }): Promise; //# sourceMappingURL=reconciliationReports.d.ts.map