import { StyleOptions } from '../../types'; export interface TextOverflowProps { /** * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string. * * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow */ style$TextOverflow: T; } export declare const textOverflow: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;