import { FC, HTMLAttributes } from 'react';
import { TextAlign, TextSize } from '../heading';
declare const Text: FC;
export interface TextProps extends HTMLAttributes {
/**
* specify the alignment of text. Can be "left", "right", "center"
*/
align?: TextAlign;
/**
* determines the size of the text. @see TextSize
*/
size?: TextSize;
/**
* integer to truncate text at the specified length
*/
trim?: number;
}
export { Text };