import type { FetchResponse, ParseAsResponse } from 'openapi-fetch'; import type { MediaType, ResponseObjectMap, SuccessResponse } from 'openapi-typescript-helpers'; /** * Transform a response from the API * @param resp - The response to transform * @throws HTTPError if the response is an error * @returns The transformed response */ export declare function transformResponse, Options, Media extends MediaType>(resp: FetchResponse): ParseAsResponse, Media>, Options> | undefined | never; export declare function isIsoDateString(value: unknown): value is string; export declare function decodeDates(data: T): T; export declare function encodeDates(data: T): T;