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