type LocationValue = string | number; type LocationUnion = { __rjweb_type: 'union'; values: string[]; }; type LocationParam = { __rjweb_type: 'param'; name: string; }; type Location = LocationValue | LocationUnion | LocationParam; /** * Define a route location using template literals. * @since 9.5.6 */ declare const _default: ((locations: TemplateStringsArray, ...values: Location[]) => string[]) & { /** * Define a Union of Locations in a Path * @since 9.5.6 */ union: (...values: string[]) => LocationUnion; /** * Define a Param in a Path * @since 9.5.6 */ param: (name: string) => LocationParam; }; export default _default;