import { DEFAULT_DELIMITER, DEFAULT_QUOTATION } from '../../core/constants'; import { ParseBinaryOptions } from '../../core/types'; /** * Extracts the options from the blob object. * * @param blob - The blob object from which to extract the options. * @param options - The options to merge with the extracted options. * @returns The options extracted from the blob. */ export declare function getOptionsFromBlob
, Delimiter extends string = DEFAULT_DELIMITER, Quotation extends string = DEFAULT_QUOTATION>(blob: Blob, options?: ParseBinaryOptions): ParseBinaryOptions;