import { Component } from 'react'; export interface INotifyContentProps { text?: React.ReactNode; close(): void; selector: string | HTMLElement; status: string; isIn?: boolean; } export default class NotifyContent extends Component { static defaultProps: { text: string; status: string; className: string; }; onExited: () => void; render(): JSX.Element; }