import { type BlockBackgroundVariant } from "../BlockBackground"; export type CardsBlockProps = Readonly<{ titleBlock: React.ReactNode; children: React.ReactNode; /** Maximum number of columns at the largest breakpoint: 3 (default) or 4. */ columns?: 3 | 4; /** * Label for the show-more link rendered below the grid. When set and there are more than * `columns * 2` cards, the grid clips to the first `columns * 2` cards (two rows at the widest * breakpoint) until the link is activated. Hidden cards stay in the DOM so they remain * crawlable. */ showMoreLabel?: string; background?: BlockBackgroundVariant; }>; export declare const CardsBlock: ({ titleBlock, children, columns, showMoreLabel, background, ...rest }: CardsBlockProps) => import("react").JSX.Element; //# sourceMappingURL=CardsBlock.d.ts.map