import { FunctionComponent, MouseEventHandler, Ref } from 'react'; import { ARIA_LIVE_VARIANT } from '../const'; import { VARIANT } from '../Theme'; export interface ToastNotificationProps { id: string; header?: string; children: string; variant?: VARIANT; role?: string; ariaLive?: ARIA_LIVE_VARIANT; forwardRef?: Ref; onClick: MouseEventHandler; } declare const ToastNotification: FunctionComponent; export default ToastNotification;