/** * Generates route files for schemas with `options.api`. * * Each schema gets its own route file at routes/api/omnify/{snake_name}.php. * Always overwritten. */ import { SchemaReader } from './schema-reader.js'; import type { GeneratedFile, PhpConfig } from './types.js'; /** Generate route files for all schemas with api config. */ export declare function generateRoutes(reader: SchemaReader, config: PhpConfig): GeneratedFile[];