import { Contact } from './Contact'; import { License } from './License'; import { Node } from './Node'; import { OpenAPI } from './OpenAPI'; import type { InfoModel } from './types'; import type { Nullable } from '@fresha/api-tools-core'; export declare class Info extends Node implements InfoModel { #private; constructor(parent: OpenAPI, title: string, version: string); get title(): string; get description(): Nullable; get termsOfService(): Nullable; get contact(): Contact; get license(): License; get version(): string; } //# sourceMappingURL=Info.d.ts.map