export type SpecFormat = 'json' | 'yaml'; export interface EmitOpenApiSpecOptions { output?: string | undefined; format?: SpecFormat | undefined; } /** * Build the server in-process (no listen), capture the OpenAPI doc, and * return it as a string. The `quiet: true` flag on `buildServer` keeps the * logger silent so this never contaminates stdout / stderr for callers. */ export declare function renderOpenApiSpec(format?: SpecFormat): Promise; export declare function emitOpenApiSpec(opts?: EmitOpenApiSpecOptions): Promise; //# sourceMappingURL=spec.d.ts.map