/** * Catch-all type for route params. * * @public */ export type AnyRouteRefParams = { [param in string]: string; } | undefined;