import type { RouteParams } from '../utility-types/index.js'; type QueryValue = string | number | boolean | undefined | null; export declare function buildUrl>({ path, params, query }: { path: Path; params?: RouteParams; query?: Query; }): string; export {};