import { ForwardRefExoticComponent, RefAttributes } from 'react';
import { TypographyBodyProps } from './Typography';
import { Text } from './Text';
import { Title } from './Title';
import { Link } from './Link';
import { Paragraph } from './Paragraph';
export type TypographyProps = ForwardRefExoticComponent<TypographyBodyProps & RefAttributes<HTMLElement>> & {
    Link: typeof Link;
    Paragraph: typeof Paragraph;
    Text: typeof Text;
    Title: typeof Title;
};
export declare const Typography: TypographyProps;
