import { FC, ReactHTML, HTMLAttributes } from 'react';
/**
*
*/
export type TextProps = {
tag?: keyof ReactHTML;
category?: 'body' | 'heading' | 'title';
type?: 'small' | 'regular' | 'medium' | 'large' | 'caps';
align?: 'left' | 'center' | 'right';
truncate?: boolean;
section?: boolean;
} & HTMLAttributes;
/**
*
*/
export declare const Text: FC;