import { w as SchemaMeta } from "../types-BBQaEPfE.mjs"; import { LinkInfo } from "./parser.mjs"; import { ReactNode } from "react"; //#region src/openapi/ApiLinks.d.ts /** * Props accepted by {@link ApiLinks}. * * @group OpenAPI */ interface ApiLinksProps { /** Link definitions for a response. */ links: LinkInfo[]; /** Optional meta overrides. */ meta?: SchemaMeta; } /** * Render OpenAPI link definitions attached to a response. Displays each * link's name, target operation (`operationId` or `operationRef`), * description, and parameter mappings. Read-only. * * @group OpenAPI */ declare function ApiLinks({ links }: ApiLinksProps): ReactNode; //#endregion export { ApiLinks, ApiLinksProps };