import { Matcher, Transformer } from '@walkeros/core'; type MatchExpression = Matcher.MatchExpression; type MatchCondition = Matcher.MatchCondition; type MatchOperator = Matcher.MatchOperator; interface RouterSettings { routes?: Route[]; } interface Route { match: MatchExpression | '*'; next: Transformer.Next; } declare const transformerRouter: Transformer.Init>; export { type MatchCondition, type MatchExpression, type MatchOperator, type Route, type RouterSettings, transformerRouter as default, transformerRouter };