/**
* The type of route parameter.
*/
export declare enum RouteParamType {
	Required = "req",
	Optional = "opt",
	Wildcard = "*",
}
