import React from 'react';
import { TypographyProps } from './Typography.types';
/**
 * A component for displaying texts of any kind
 */
declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLSpanElement>>;
export default Typography;
