import { MmUIComponent } from './component' import { AlertIconType } from './icon-type' /** Alert Component */ export declare class MmAlert extends MmUIComponent { /** Is global alert or not */ global: boolean /** Title */ title: string /** More infomation */ description: string /** Alert type */ type: AlertIconType /** Is closable or not */ closable: boolean /** Custom close text */ closeText: string /** Show type icon or not */ showIcon: boolean /** Text align center */ center: boolean }