import * as React from "react"; import { Item as DropdownItem } from "../MoreMenu/DropdownMenuItem"; import { ViewProps } from "../View"; export interface SlatMiniProps extends ViewProps { id?: number; title?: string | React.ReactNode; bottomMeta?: React.ReactNode[] | React.ReactNode[][]; image?: string; type?: string; href?: string; typeBackground?: string; actionRenderer?: () => React.ReactChild; dropdownItems?: DropdownItem[]; size?: "lg" | "md" | "sm"; imageOverlayRenderer?: () => React.ReactNode; backgroundSize?: string; backgroundPosition?: string; lineClamp?: number; } /** * SlatMini represents specific objects within a collection, such as people or learning resources, in a smaller format with fewer details than the Slat. They provide contextual information (metadata) on the resource type and link to the object’s detail page. */ declare const SlatMini: React.SFC; export default SlatMini;