import { BasicNode } from './BasicNode'; import type { ExampleModel, ExampleModelParent } from './types'; import type { Nullable, URLString, JSONValue, CommonMarkString } from '@fresha/api-tools-core'; /** * @see http://spec.openapis.org/oas/v3.0.3#example-object */ export declare class Example extends BasicNode implements ExampleModel { #private; constructor(parent: ExampleModelParent); get summary(): Nullable; set summary(value: Nullable); get description(): Nullable; set description(value: Nullable); get value(): JSONValue; set value(value: JSONValue); get externalValue(): Nullable; set externalValue(value: Nullable); } //# sourceMappingURL=Example.d.ts.map