import type * as RMOAS from '../rmoas.types';
export type CallbackExamples = {
    example: unknown;
    expression: string;
    identifier: string;
    method: string;
}[];
/**
 * With an OpenAPI Operation Object return back a collection of examples for any callbacks that may
 * be present.
 *
 * @param operation Operation to retrieve callback examples from.
 */
export default function getCallbackExamples(operation: RMOAS.OperationObject): {
    example: unknown;
    expression: string;
    identifier: string;
    method: string;
}[];
