import * as React from "react"; import { AvatarProps } from "../avatar"; export interface ListItemProps { avatar?: AvatarProps; title?: string | React.ReactNode; text?: string | React.ReactNode; /** custom actions to render on the right */ actions?: any[]; } export declare const ListItem: ({ avatar, title, text, actions }: ListItemProps) => JSX.Element; export default ListItem;