import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; /** * Represents the `IDialogContentElementProps` interface. * * @public */ export interface IDialogContentElementProps extends ITextFormattableProps, ISlottableProps { text: string; } //# sourceMappingURL=IDialogContentElementProps.d.ts.map