import { ComponentOverridableForwardRefComponentPropsFactory } from '../utils/jsx-types'; import { SingleThumbnailCardComponent, SingleThumbnailCardProps } from './typings'; export type SingleThumbnailCardComponentProps = ComponentOverridableForwardRefComponentPropsFactory; /** * SingleThumbnailCard displays a single image thumbnail with optional tag, personal action, * and info section. Supports three action types: default, action, and overflow. * * The card width is determined by the image child element. */ declare const SingleThumbnailCard: import("react").ForwardRefExoticComponent, "children" | "title" | "className" | "type" | "options" | "actionName" | "onActionClick" | "onOptionSelect" | "filetype" | "subtitle" | "personalActionIcon" | "personalActionActiveIcon" | "personalActionActive" | "personalActionOnClick" | "tag"> & SingleThumbnailCardProps, "component"> & { component?: SingleThumbnailCardComponent | undefined; } & import("react").RefAttributes>; export default SingleThumbnailCard;