import React from 'react'; import Typography, { TypographyProps } from '../Typography'; import './resetTextStyle'; import { StyledComponentClass } from 'styled-components'; import { Theme } from '../types'; interface TextComp extends StyledComponentClass & React.HTMLAttributes & TypographyProps, Theme, React.ClassAttributes & React.HTMLAttributes & TypographyProps> { } declare const Display1: TextComp; declare const Display2: TextComp; declare const Display3: TextComp; declare const Display4: TextComp; declare const Headline: TextComp; declare const Title: TextComp; declare const Subheading: TextComp; declare const Body2: TextComp; declare const Body1: TextComp; declare const Caption: TextComp; declare const Button: TextComp; export default Typography; export { Display4, Display3, Display2, Display1, Headline, Title, Subheading, Body2, Body1, Caption, Button, Display4 as H1, Display3 as H2, Display2 as H3, Display1 as H4, Headline as H5, Subheading as H6, Body1 as P, };