import React from 'react'; import { StringTranslation } from '../../../types'; export type Density = 'compact' | 'standard' | 'comfortable'; export interface ListItemProps { id: string; title: StringTranslation | string | React.ReactNode; subtitle?: StringTranslation | string | React.ReactNode; onClick?: () => void; actions?: { label: StringTranslation | string; onClick: () => void; }[]; density?: Density; rowIcon?: React.ReactNode; canClick?: boolean; listId: number; buttons?: React.ReactNode[]; body?: StringTranslation | string | React.ReactNode; } declare const ListItem: ({ id, title, subtitle, onClick, actions, density, rowIcon, canClick, listId, buttons, body, }: ListItemProps) => React.JSX.Element; export default ListItem; //# sourceMappingURL=ListItem.d.ts.map