import { SurveyCreatorModel } from "survey-creator-core";
export interface IConfirmDialogOptions {
    title: string;
    message: string;
    iconName: string;
    category?: "warning" | "danger";
    showCloseButton: boolean;
    applyText: string;
    cancelText: string;
    onApply: () => boolean;
    onCancel: () => void;
}
export declare function showConfirmDialog(creator: SurveyCreatorModel, options: IConfirmDialogOptions): any;
