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