interface IMessageBox { messageHeading: string; message: string; subHeading?: string; subMessage?: string; iconClass: string; messageBoxClass: string; } export declare class GenericCommentPopupModel { commentData: string; modalTitle: string; modalHeader: string; modalMessage: string; modalAdditionalMessage: string; modalMessageInMessageBox: IMessageBox; showCloseIcon: boolean; applyButtonLabel: string; cancelButtonLabel: string; specialCharactersAllowed: boolean; regexPattern: RegExp; isCommentDisabled: boolean; allowCommentToBeEmpty: boolean; checkCommentChangesToEnableApply: boolean; constructor(data?: Partial); } export {};