export interface IDialog {
    show(parameters: any, callback: (params: any) => void, afterClosing: () => void, isModal: boolean): any;
}
