import * as React from "react"; import { Item as DropdownItem } from "../MoreMenu/DropdownMenuItem"; import { ViewProps } from "../View"; import { IconProps } from "../IconBase"; export interface SlatProps extends ViewProps { id?: number; topMeta?: string[]; title?: string; description?: string; currency?: string; price?: number; priceSuffix?: string; bottomMeta?: Array<{ icon?: React.ComponentType; text: string; }>; image?: string; type?: string; typeBackground?: string; actionRenderer?: () => React.ReactChild; dropdownItems?: DropdownItem[]; tax?: { amount?: number; included?: boolean; }; } declare const Slat: React.SFC; export default Slat;