import { ApiEntity } from '@backstage/catalog-model'; /** * A dialog that lets users inspect the API definition. * * @public */ export declare function ApiDefinitionDialog(props: { open: boolean; entity: ApiEntity; onClose: () => void; }): import("react/jsx-runtime").JSX.Element;