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