import { PackedBit } from "@polymath-ai/types"; import { PolymathOptions } from "@polymath-ai/types"; export type IngestOptions = { destination?: string; } & PolymathOptions; export type IngestArguments = { importer: string; source: string; options?: IngestOptions; }; export declare class Ingest { run(args: IngestArguments): AsyncGenerator; } //# sourceMappingURL=main.d.ts.map