export interface Option { routes: any; authTypes?: any; } export declare const init: (option: Option) => void; export declare const load: (routesGroup: any) => void; export declare const get: (url: any, type?: any) => any; export declare const getAll: (type?: any) => any[]; export declare const isNone: (path: any) => boolean; export declare const isPub: (path: any) => boolean;