import { ElementIntlBase } from '../../../../Intl/Abstracts/ElementIntlBase'; /** * The `MessageBoxElementIntl` class. * * @public */ export declare class MessageBoxElementIntl extends ElementIntlBase { private _okLabel; private _cancelLabel; private _yesLabel; private _noLabel; /** * Constructs a new instance of the `MessageBoxElementIntl` class. * * @public */ constructor(locale: string); /** * A label for the OK button. * * @public */ get okLabel(): string; set okLabel(value: string); /** * A label for the Cancel button. * * @public */ get cancelLabel(): string; set cancelLabel(value: string); /** * A label for the Yes button. * * @public */ get yesLabel(): string; set yesLabel(value: string); /** * A label for the No button. * * @public */ get noLabel(): string; set noLabel(value: string); } //# sourceMappingURL=MessageBoxElementIntl.d.ts.map