import React from 'react';
export type AlertType = 'success' | 'error' | 'warning' | 'info' | 'question';
interface CustomAlertProps {
    type: AlertType;
    title?: string;
    text: string;
    isBehindVisible?: boolean;
    isConfirmBtn?: boolean;
    countdown?: number;
    popupCustomClass?: string;
    id?: string;
}
export declare const Alerts: React.FC<CustomAlertProps>;
export {};
