interface GetErrorOptions { error?: Error; message: keyof T; } export declare const getFetchError: (options: GetErrorOptions<{ ResponseFetchError: (...args: any[]) => string; }>, ...args: string[]) => string; export declare const getDecompressionError: (options: GetErrorOptions<{ UnexpectedDecompressionError: (...args: any[]) => string; DecompressionNotSupported: (...args: any[]) => string; }>, ...args: string[]) => string; export declare const getParserError: (options: GetErrorOptions<{ ResponseParsingError: (...args: any[]) => string; }>, ...args: string[]) => string; export {};