import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { MessageBoxButtons } from '../../../Types/MessageBoxButtons'; import type { IDialogElementProps } from '../Dialog/IDialogElementProps'; /** * Represents the `IMessageBoxElementProps` interface. * * @public */ export interface IMessageBoxElementProps extends IDialogElementProps, IVariantableProps, ITextFormattableProps { readonly header?: string; readonly subHeader?: string; readonly message?: string; readonly buttons?: MessageBoxButtons; readonly icon?: string; } //# sourceMappingURL=IMessageBoxElementProps.d.ts.map