import { ModalActionType, ModalButtonAlignment, ModalButtonSeverity } from '../enums'; export declare const OK_DIALOG_CLASS = "modal-button-ok"; export declare const CANCEL_DIALOG_CLASS = "modal-button-cancel"; export declare const CLOSE_DIALOG_CLASS = "modal-button-close"; export declare const EXECUTE_DIALOG_CLASS = "modal-button-execute"; export declare const MISC_DIALOG_CLASS = "modal-button-misc"; export declare const PRIMARY_DIALOG_BUTTON_CLASS = "modal-button-primary"; export declare const SUCCESS_DIALOG_BUTTON_CLASS = "modal-button-success"; export declare const WARN_DIALOG_BUTTON_CLASS = "modal-button-warn"; export declare const NORMAL_DIALOG_BUTTON_CLASS = "modal-button-normal"; export declare const DIALOG_BUTTON_ALIGN_RIGHT = "modal-button-align-right"; export declare const DIALOG_BUTTON_ALIGN_LEFT = "modal-button-align-left"; export declare const MODAL_SCROLL_X = "modal-scroll-x"; export declare const MODAL_SCROLL_Y = "modal-scroll-y"; export declare const MODAL_SCROLL = "modal-scroll"; export declare class ModalClassObjity { /** * Returns the severity class of the given severity * @param {ModalButtonSeverity} severity The severity level * @return {string} The button severity class */ static getSeverityClass(severity: ModalButtonSeverity): string; /** * Returns the button class of the given button type * @param {ModalActionType} type The button type * @return {string} The class of the button */ static getButtonClass(type: ModalActionType): string; /** * Returns the modal button alignment class * @param {ModalButtonAlignment} alignment [description] * @return {string} [description] */ static getAlignmentClass(alignment: ModalButtonAlignment): string; }