import * as React from 'react';
interface Props {
    name: string;
    id?: string;
    ellipsis?: boolean;
    highlight?: string[];
}
export declare const ItemText: React.FC<Props>;
export {};
