import React from 'react';
import type { TypographyTextProps, TypographyTitleProps, TypographyLinkProps } from './type';
import Typography from './Typography';
const Text = (props: TypographyTextProps) => ;
const Title = (props: TypographyTitleProps) => ;
const Link = (props: TypographyLinkProps) => ;
const TypographyNamespace = Object.assign(Typography, { Text, Title, Link });
export default TypographyNamespace;
export { TypographyNamespace as Typography };
export type {
TypographyBaseProps as TypographyProps,
TypographySize,
TypographyType,
TypographyTitleLevel,
} from './type';