export interface AlertArgs {
    title?: string;
    message?: string;
    button?: Array<any> | object;
    onOk?: () => void;
    options?: any;
}
/**
 * @author 田尘殇Sean(sean.snow@live.com)
 * @date 2017/3/22
 */
export default function ({ title, message, button, onOk, options }: AlertArgs): void;
