import type { Group } from '@chubbyts/chubbyts-framework/dist/router/group';
import { createGroup, getRoutes } from '@chubbyts/chubbyts-framework/dist/router/group';
import type { Route } from '@chubbyts/chubbyts-framework/dist/router/route';

const group: Group = createGroup({ ... });

const routes: Array<Route> = getRoutes(group);