import { OpenAPIObject } from '@nestjs/swagger'; export interface OpenAPIProperty { name: string; description?: string; type?: string; } export interface OpenAPISchema { properties: OpenAPIProperty[]; } export declare type OpenAPISchemas = Record; export declare function parseOpenAPISchemas(document: OpenAPIObject): OpenAPISchemas;