import React from 'react';
interface TruncatedTextProps {
    text: string;
    maxLines: number;
    width: number;
    color?: string;
    dimColor?: boolean;
}
export declare function TruncatedText({ text, maxLines, width, color, dimColor }: TruncatedTextProps): React.JSX.Element;
export {};
//# sourceMappingURL=TruncatedText.d.ts.map