import { Entity } from '@backstage/catalog-model'; /** @public */ export type InfoCardGridClassKey = 'linkSpacer' | 'readMoreLink'; /** * Props for {@link InfoCardGrid} * * @public */ export type InfoCardGridProps = { entities: Entity[] | undefined; linkContent?: string | JSX.Element; linkDestination?: (entity: Entity) => string | undefined; }; /** * Component which accepts a list of entities and renders a info card for each entity * * @public */ export declare const InfoCardGrid: (props: InfoCardGridProps) => import("react/jsx-runtime").JSX.Element | null;