import { type Route } from "./getAllRoutes.js"; export type Variables = { path: string | string[]; domain?: string | null; changeset?: string | null; }; export type Result = { getRouteByPath: { total: number; items: Route; }; }; export declare const query: string;