import { w as SchemaMeta } from "../types-BBQaEPfE.mjs"; import { CallbackInfo } from "./parser.mjs"; import { ReactNode } from "react"; //#region src/openapi/ApiCallbacks.d.ts /** * Props accepted by {@link ApiCallbacks}. * * @group OpenAPI */ interface ApiCallbacksProps { /** Callback definitions for this operation. */ callbacks: CallbackInfo[]; /** Optional meta overrides. */ meta?: SchemaMeta; } /** * Render OpenAPI callback definitions declared on an operation. Each * callback name is displayed alongside its operations. Read-only — * intended for documentation rather than interactive editing. * * @group OpenAPI */ declare function ApiCallbacks({ callbacks }: ApiCallbacksProps): ReactNode; //#endregion export { ApiCallbacks, ApiCallbacksProps };