import * as React from 'react'; import { TooltipPosition } from '../Tooltip'; export declare const variantIcons: { success: React.ComponentClass; danger: React.ComponentClass; warning: React.ComponentClass; info: React.ComponentClass; default: React.ComponentClass; }; export interface NotificationDrawerListItemHeaderProps extends React.HTMLProps { /** Actions rendered inside the notification drawer list item header */ children?: React.ReactNode; /** Additional classes for notification drawer list item header. */ className?: string; /** Add custom icon for notification drawer list item header */ icon?: React.ReactNode; /** Notification drawer list item header screen reader title */ srTitle?: string; /** Notification drawer list item title */ title: string; /** Variant indicates the severity level */ variant?: 'success' | 'danger' | 'warning' | 'info' | 'default'; /** Truncate title to number of lines */ truncateTitle?: number; /** Position of the tooltip which is displayed if text is truncated */ tooltipPosition?: TooltipPosition | 'auto' | 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end'; } export declare const NotificationDrawerListItemHeader: React.FunctionComponent; //# sourceMappingURL=NotificationDrawerListItemHeader.d.ts.map