import type { JSONSchema7 } from 'json-schema'; import type { OpenAPIObject } from 'openapi3-ts/oas31'; interface CompileOptions { name: string; schema: JSONSchema7 & { components?: OpenAPIObject['components']; }; refs?: Map; dontCreateRefTypes?: boolean; } export declare function compileTs(options: CompileOptions): string; export {};