import React, { ComponentProps } from 'react'; export declare type FormattedTextProps = { children: string | number; } & Omit, 'children'>; export declare const EllipsisText: React.MemoExoticComponent<({ children, className, ...attributes }: FormattedTextProps) => JSX.Element | null>;