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<INotifyContentProps> {
    static defaultProps: {
        text: string;
        status: string;
        className: string;
    };
    onExited: () => void;
    render(): JSX.Element;
}
