import { ReactElement, ReactNode } from 'react'; import { AvatarProps } from '../../../../../../../../../../src/components/Avatar'; import { IconProps } from '../../../../../../../../../../src/components/Icon'; import { TooltipPosition } from '../../../../../../../../../../src/components/Tooltip'; export interface ListItemProps { actions?: ReactElement[]; avatar?: ReactElement; children?: ReactNode; className?: string; icon?: ReactElement; showDivider?: boolean; tooltip?: string; tooltipPosition?: TooltipPosition; } /** * This component will typically be used as a child of the List component. */ export declare const ListItem: { ({ actions, avatar, children, className, icon, showDivider, tooltip, tooltipPosition, }: ListItemProps): import("react/jsx-runtime").JSX.Element; displayName: string; };