import { AlertParamsInterface } from '../interfaces'; import '../styles/common.css'; import '../styles/alert.css'; export declare const Alert: { warning: (params: AlertParamsInterface) => Promise; error: (params: AlertParamsInterface) => Promise; success: (params: AlertParamsInterface) => Promise; info: (params: AlertParamsInterface) => Promise; };