import { type BaseInterface } from "./base";
export interface OpenApiExample extends BaseInterface {
    addValue(val: string | unknown): this;
    addExternalValue(val: string): this;
    addSummary(summary: string): this;
    addDescription(description: string): this;
}
export declare const Example: OpenApiExample;
