interface Options {
    appDirectory: string;
    lazy?: 'always' | 'suffix';
}
interface Route {
    index?: boolean;
    path?: string;
    lazy?: string;
    spread?: string;
    children?: Route[];
}

export type { Options, Route };
