import { DEFAULT_DELIMITER } from '../../core/constants'; import { ParseBinaryOptions } from '../../core/types'; /** * Extracts the options from the response object. * * @param response - The response object from which to extract the options. * @param options - The options to merge with the extracted options. * @returns The options extracted from the response. * @throws {TypeError} - The content type is not supported or the content-encoding is invalid. */ export declare function getOptionsFromResponse
, Delimiter extends string = DEFAULT_DELIMITER, Quotation extends string = '"'>(response: Response, options?: ParseBinaryOptions): ParseBinaryOptions;