import React from 'react';
import { BaseComponentProps, TypographyVariant, ColorVariant } from '../../types';
export interface TypographyProps extends BaseComponentProps {
    variant?: TypographyVariant;
    color?: ColorVariant;
    weight?: 'normal' | 'medium' | 'semibold' | 'bold';
    align?: 'left' | 'center' | 'right';
    as?: keyof JSX.IntrinsicElements;
}
declare const Typography: React.FC<TypographyProps>;
export default Typography;
