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