declare namespace _default {
    export { open };
    export { validate };
    export { cancel };
}
export default _default;
/**
 * Action called at the dialog opening|mounting.
 * @param {object} event
 * @param {object} data
 */
declare function open(event: object, data: object): {
    type: string;
    cmf: {
        routerReplace: string;
    };
    model: any;
    redirectUrl: string;
};
/**
 * Action to delete a resource and close the confirm dialog.
 */
declare function validate(event: any, data: any): {
    type: string;
    data: any;
};
/**
 * Action to cancel and close the confirm dialog.
 */
declare function cancel(event: any, data: any): {
    type: string;
    data: any;
};
