import { type ReactElement } from 'react'; type EllipsisProp = { key: string; testId?: string; from: number; to: number; }; export default function renderEllipsis({ key, testId, from, to }: EllipsisProp): ReactElement; export {};