import type { TextOverflow } from '../../../Types/TextOverflow'; import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; import type { TextAlignment } from '../../../Types/TextAlignment'; /** * Represents the `IHintElementProps` interface. * * @public */ export interface IHintElementProps extends ITextFormattableProps { text: string; textOverflow: TextOverflow; alignment: TextAlignment; } //# sourceMappingURL=IHintElementProps.d.ts.map