import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IInvalidableProps } from '../../../Behaviors/Invalidable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { ResizeMode } from '../../../Types/Resize'; /** * Represents the `IRichTextBoxElementProps` interface. * * @public */ export interface IRichTextBoxElementProps extends IAppearanceableProps, IVariantableProps, IDisableableProps, IValueableProps, ILabelableProps, IInvalidableProps { value: string; readonly: boolean; required: boolean; autofocus: boolean; name: string; pattern: string; placeholder: string; autocomplete: boolean; minlength: number | null; maxlength: number | null; invalid: boolean; multilineRows: number; resize: ResizeMode; showToolbar: boolean; } //# sourceMappingURL=IRichTextBoxElementProps.d.ts.map