import { Entity } from '@backstage/catalog-model'; /** * Props for {@link AboutContent}. * * @public */ export interface AboutContentProps { entity: Entity; } /** @public */ export declare function AboutContent(props: AboutContentProps): import("react/jsx-runtime").JSX.Element;