import { BaseParamType, Prefix, Route } from "../types/route"; export declare const routeBuilder: (prefix: Prefix, route?: Route | undefined) => string; export declare const routeBuilderWithParam: (prefix: Prefix, param: BaseParamType, route?: Route | undefined) => string;