import { type BaseInterface } from "./base";
import type { OpenApiPathItem } from "./OpenApiPathItem";
export interface OpenApiCallback extends BaseInterface {
    addCallback(mappings: Partial<{
        [K in string]: OpenApiPathItem;
    }>): this;
}
export declare const Callback: OpenApiCallback;
