import type { AccessRoute } from './types'; export interface CanonicalFetchOptions { route: AccessRoute; fetchImpl?: typeof fetch; } export type CanonicalFetch = (input: RequestInfo | URL, init?: RequestInit) => Promise; export declare function createCanonicalFetch(options: CanonicalFetchOptions): CanonicalFetch;