export type IMeta = {
    rawPath?: Array<string>;
};
export type IRoute = {
    name?: string;
    path?: string;
    meta?: IMeta;
};
