import * as React from 'react'; import { IParagraph } from '../../interfaces'; import { intent, decoration, size, weight } from './Text.types'; interface TextProps extends IParagraph { /** * Color of text */ intent?: intent; /** * Size of text */ size?: size; /** * Text weight * @default 'regular' */ weight?: weight; /** * Text Decoration ('underline' | 'stroke') */ decoration?: decoration; /** * Truncate text */ ellipsis?: boolean; /** * Additional classes */ className?: string; } export declare class Text extends React.PureComponent { static defaultProps: { intent: string; size: string; weight: string; }; render(): JSX.Element; } export {};