import { DEFAULT_DELIMITER, DEFAULT_QUOTATION } from '../../../core/constants'; import { CSVRecord, ParseBinaryOptions } from '../../../core/types'; /** * Parse CSV binary in main thread. * This is the default binary parsing implementation. * * @internal * @param binary CSV binary to parse (BufferSource: Uint8Array, ArrayBuffer, or other TypedArray) * @param options Parsing options * @returns Async iterable iterator of records */ export declare function parseBinaryInMain
, Delimiter extends string = DEFAULT_DELIMITER, Quotation extends string = DEFAULT_QUOTATION>(binary: BufferSource, options?: ParseBinaryOptions): AsyncIterableIterator>;