export interface Route {
    name: string;
    path: string;
    slug?: string;
    component: unknown;
}
export type Lazy<T> = () => Promise<T>;
