import { ReactNode } from 'react';
import { SizeType, SpacingType, TypographyType } from '../../../types/styleType';
export interface ITextProps extends React.HTMLAttributes<HTMLElement>, SizeType, SpacingType {
    className?: string;
    children?: ReactNode;
    type?: TypographyType;
    display?: 'inline' | 'block';
    align?: 'left' | 'center' | 'right';
    line?: 'over' | 'mid' | 'under';
    wrap?: number;
    color?: string;
}
declare const Text: import("react").ForwardRefExoticComponent<ITextProps & import("react").RefAttributes<any>>;
export default Text;
