import { type IngestConfig, type IngestData, type IngestParams, type IngestResponseSuccess } from '../constants';
import { type Logger } from '../utils';
export default function ingest(data: IngestData, params: IngestParams, config?: IngestConfig, logger?: Logger): Promise<IngestResponseSuccess>;
