import { default as React } from 'react'; type EllipsisProps = { /** Optional prop to add a test id to the Ellipsis for QA testing */ qaTestId?: string; }; declare const Ellipsis: ({ qaTestId, }: EllipsisProps) => React.JSX.Element; export default Ellipsis;