export declare const ParamMethod: { regex: RegExp; contains: (url: string) => boolean; match: (url: string) => { from: string; control: string; }[]; }; export declare const VariableMethod: { regex: RegExp; contains: (url: string) => boolean; match: (url: string, params: { [k: string]: string | number; }) => { from: string; value: string | number; }[]; }; export declare const openLink: (link: string, newPage: boolean) => void;