import { AppContext, VNode } from 'vue';
import { DialogProps } from './props';

export type IDialogTipMethod = (message: string | VNode, title: string, options?: Partial<DialogProps>, appContext?: AppContext | null) => any;
export interface IDialogTip {
    _context: AppContext | null;
    (options: Partial<DialogProps>, appContext?: AppContext | null): void;
    normal: IDialogTipMethod;
    warning: IDialogTipMethod;
    danger: IDialogTipMethod;
    info: IDialogTipMethod;
    close: () => void;
}
declare const _default: IDialogTip;
export default _default;
