import * as React from 'react'; import { NotificationProps } from '../Notification'; import { NotificationOption } from './types'; export declare type ToastNotificationProps = NotificationOption & NotificationProps; export interface ToastNotificationState { closing: boolean; } export declare class ToastNotification extends React.Component { private autoCloseId; private closeId; constructor(props: ToastNotificationProps); UNSAFE_componentWillMount(): void; componentWillUnmount(): void; private onCloseHandler; private close; render(): JSX.Element; static inner: { readonly StyledNotification: any; }; }