import React from "react"; import { IconProps } from "../icon/icon"; import { ColorSpecifier } from "../../theme/theme"; export type ItemType = { id?: string; metanospace?: boolean; icon?: IconProps & { tooltip?: string; tooltipheight?: number; arrow?: string; }; primarytext?: string; primarytextcolor?: ColorSpecifier; secondarytext?: string; secondarytextcolor?: ColorSpecifier; onClick?: () => void; href?: string; disabled?: boolean; subtext?: string; meta?: string | React.ReactElement>; subtextalign?: string; itemcontent?: React.ReactElement | string; contentvisible?: boolean; }; export type ListProps = { divider?: boolean; iconWidth?: string; itemHeight?: string; fullWidth?: boolean; centerText?: boolean; overflowHidden?: boolean; iconsNotRounded?: boolean; style?: object; textGap?: string; breakspaces?: boolean; showToggleMeta?: boolean; setItems?: (e: Array) => void; items: Array; tooltipArrow?: number; }; declare const List: ({ items, divider, fullWidth, iconWidth, centerText, itemHeight, overflowHidden, breakspaces, iconsNotRounded, style, textGap, setItems, showToggleMeta, tooltipArrow, }: ListProps) => React.JSX.Element; export default List;