export default ConfirmationDialogView;
/**
 * ~Option
 */
export type ConfirmationDialogView = {
    name: string;
    displayName: string;
    callback: Function;
    enabled?: ObservedBoolean | ReactiveExpression;
};
/**
 * @typedef {Object} ConfirmationDialogView~Option
 * @property {string} name
 * @property {string} displayName
 * @property {function} callback
 * @property {ObservedBoolean|ReactiveExpression} [enabled]
 */
declare class ConfirmationDialogView extends View<HTMLElement> {
    /**
     * @param {View} content
     * @param {Array.<ConfirmationDialogView~Option>} options
     * @constructor
     */
    constructor(content: View, options: any);
    el: Element;
}
import View from "../View.js";
//# sourceMappingURL=ConfirmationDialogView.d.ts.map