import { FC } from 'react';
import { HTMLTribeProps } from '../types/index.js';
export declare type TextAlign = 'leading' | 'center' | 'trailing';
export declare type TextSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
export declare type TextProps = HTMLTribeProps<'span'> & {
align?: TextAlign;
size?: TextSize;
truncate?: boolean;
};
export declare const Text: FC;