/** * Generates config/omnify-schemas.php — schema metadata for the Query Engine. * * Only includes schemas with `options.api` set. * Only includes properties that have searchable/filterable/sortable flags. */ import { SchemaReader } from './schema-reader.js'; import type { GeneratedFile, PhpConfig } from './types.js'; /** Generate the omnify-schemas config file. */ export declare function generateSchemaConfig(reader: SchemaReader, config: PhpConfig): GeneratedFile[];