import type { ValuesOf } from '../../Types/ValuesOf'; /** * Defines how text content should behave when it exceeds its container. * * @public */ export declare const TextOverflow: { /** * Cuts off overflowing text and typically adds an ellipsis (`…`). */ readonly Truncate: "truncate"; /** * Breaks the text into multiple lines to fit the container. */ readonly Wrap: "wrap"; }; /** * @public */ export type TextOverflow = ValuesOf; //# sourceMappingURL=TextOverflow.d.ts.map