import type { RouteDefinition } from "../../core/src/index.js"; /** * Whether the Swagger UI + spec routes should be registered at boot. * * Default: enabled when `TINA4_DEBUG=true`, disabled otherwise. Operators * can force either state with `TINA4_SWAGGER_ENABLED=true|false`. Matches * Python parity: dev-only by default to keep production attack surface * minimal, but easy to expose intentionally for public APIs. */ export declare function swaggerEnabled(): boolean; export declare function createSwaggerRoutes(getSpec: () => unknown): RouteDefinition[];