import { ComponentOverridableForwardRefComponentPropsFactory } from '../utils/jsx-types'; import { FourThumbnailCardComponent, FourThumbnailCardProps } from './typings'; export type FourThumbnailCardComponentProps = ComponentOverridableForwardRefComponentPropsFactory; /** * FourThumbnailCard displays a 2x2 grid of image thumbnails with optional tag, personal action, * and info section. Supports three action types: default, action, and overflow. * * Children must be Thumbnail components. If less than 4 are provided, empty slots will be rendered. * If more than 4 are provided, only the first 4 will be used (with a console warning in development). */ declare const FourThumbnailCard: import("react").ForwardRefExoticComponent, "children" | "title" | "className" | "type" | "options" | "actionName" | "onActionClick" | "onOptionSelect" | "filetype" | "subtitle" | "personalActionIcon" | "personalActionActiveIcon" | "personalActionActive" | "personalActionOnClick" | "tag"> & FourThumbnailCardProps, "component"> & { component?: FourThumbnailCardComponent | undefined; } & import("react").RefAttributes>; export default FourThumbnailCard;