#!/usr/bin/env tsx import { RoutesDefinition } from "../types"; interface Options { appDir: string; pagesDir: string; shouldProcessExit?: boolean; defaultLocale?: string; } export declare function routesCheck(routes: RoutesDefinition, options: Options): void; export {};