import type { RetryOptions } from '../types/retry.js'; import type { InternalOptions } from '../types/options.js'; export declare const normalizeRequestMethod: (input: string) => string; type InternalRetryOptions = InternalOptions['retry']; export declare const normalizeRetryOptions: (retry?: number | RetryOptions) => InternalRetryOptions; export {};