import type { EndpointMatcher, RequestOptions, RequestRetryOptions } from "./interfaces"; /** * Generates a function for matching namespaces to requests * @param match Multi-type endpoint matcher to convert * @returns Matcher function */ export declare const generateEndpointMatcher: (match?: string | RegExp | EndpointMatcher) => EndpointMatcher; /** * Normalizes provided retry options into configuration object * @param options Various retry option types */ export declare const normalizeRetryOptions: (options: RequestOptions["retryOptions"]) => RequestRetryOptions | void; //# sourceMappingURL=util.d.ts.map