import { DEFAULT_DELIMITER, DEFAULT_QUOTATION } from '../../core/constants'; import { ParseBinaryOptions } from '../../core/types'; /** * Extracts the options from the file object. * * @remarks * This function automatically sets the file name as the error source * for better error reporting (unless explicitly overridden via options). * * @param file - The file object from which to extract the options. * @param options - The options to merge with the extracted options. * @returns The options extracted from the file. */ export declare function getOptionsFromFile
, Delimiter extends string = DEFAULT_DELIMITER, Quotation extends string = DEFAULT_QUOTATION>(file: File, options?: ParseBinaryOptions): ParseBinaryOptions;