/**
 * OpenAPI3 types
 * These aren’t exhaustive or complete by any means; they simply provide only
 * the parts that swagger-to-ts needs to know about.
 */
export interface OpenAPI3 {
    openapi: string;
    components: {
        schemas: {
            [key: string]: OpenAPI3SchemaObject | OpenAPI3Reference;
        };
    };
    [key: string]: any;
}
export declare type OpenAPI3Type = 'array' | 'boolean' | 'integer' | 'number' | 'object' | 'string';
export declare type OpenAPI3Reference = {
    $ref: string;
} | {
    anyOf: (OpenAPI3SchemaObject | OpenAPI3Reference)[];
} | {
    oneOf: (OpenAPI3SchemaObject | OpenAPI3Reference)[];
};
export interface OpenAPI3SchemaObject {
    additionalProperties?: OpenAPI3SchemaObject | OpenAPI3Reference | boolean;
    allOf?: (OpenAPI3SchemaObject | OpenAPI3Reference)[];
    description?: string;
    enum?: string[];
    items?: OpenAPI3SchemaObject | OpenAPI3Reference;
    nullable?: boolean;
    oneOf?: (OpenAPI3SchemaObject | OpenAPI3Reference)[];
    properties?: {
        [key: string]: OpenAPI3SchemaObject | OpenAPI3Reference;
    };
    required?: string[];
    title?: string;
    type?: OpenAPI3Type;
    [key: string]: any;
}
//# sourceMappingURL=OpenAPI3.d.ts.map