import { IMatcher } from './types/base';
/**
 * pattern ex: '*foo*bar*' for maching 'XXXfooXXbarXX'
 */
export declare const routePattern: (pattern: string) => IMatcher;
export declare const urlStartWith: (urlStartingWith: string) => IMatcher;
export declare const pathStartWith: (urlStartingWith: string) => IMatcher;
