import { Node } from './Node'; import type { Components } from './Components'; import type { Header } from './Header'; import type { MediaType } from './MediaType'; import type { ParameterBase } from './Parameter'; import type { ExampleModel } from './types'; import type { Nullable, JSONValue, CommonMarkString, URLString } from '@fresha/api-tools-core'; type ExampleParent = Components | ParameterBase | Header | MediaType; export declare class Example extends Node implements ExampleModel { #private; constructor(parent: ExampleParent); 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); } export {}; //# sourceMappingURL=Example.d.ts.map