sdkRoutes: (
| {
children?: undefined;
component: DefineComponent<{}, {}, any>;
meta: { public: boolean };
name: string;
path: string;
}
| {
children: {
component: () => Promise<__module>;
name: string;
path: string;
}[];
component: () => Promise<__module>;
meta?: undefined;
name: string;
path: string;
}
)[] = ...