declare const DEFAULT_FETCH_TIMEOUT_MS = 10000; interface SafeFetchOptions { timeoutMs?: number; maxRedirects?: number; allowHttp?: boolean; resolveDns?: boolean; allowPrivate?: boolean; } declare function safeFetch(input: string, init?: RequestInit, options?: SafeFetchOptions): Promise; export type { SafeFetchOptions }; export { DEFAULT_FETCH_TIMEOUT_MS, safeFetch };