import * as React from 'react'; export interface NotificationDrawerListItemProps extends React.HTMLProps { /** Content rendered inside the list item */ children?: React.ReactNode; /** Additional classes added to the list item */ className?: string; /** Modifies the list item to include hover styles on :hover */ isHoverable?: boolean; /** Adds styling to the list item to indicate it has been read */ isRead?: boolean; /** Callback for when a list item is clicked */ onClick?: (event: any) => void; /** Visually hidden text that conveys the current read state of the notification list item */ readStateScreenReaderText?: string; /** Tab index for the list item */ tabIndex?: number; /** Variant indicates the severity level */ variant?: 'custom' | 'success' | 'danger' | 'warning' | 'info'; } export declare const NotificationDrawerListItem: React.FunctionComponent; //# sourceMappingURL=NotificationDrawerListItem.d.ts.map