import type { EndpointMethod, EndpointPath, HttpMethod } from "../utility-types/index.js"; type ResolvedEndpoint = { method: EndpointMethod; path: EndpointPath; }; export declare function resolveEndpoint(endpoint: Endpoint): ResolvedEndpoint; export {};