import * as React from 'react'; declare const TypographyTypes: ["h1_regular", "h2_medium", "h2_regular", "h3_medium", "h3_regular", "h4_medium", "h4_regular", "h4_light", "body_medium", "body_regular", "body_light", "body_link", "body_bold", "capture_regular", "capture_medium", "capture_link", "capture_light"]; export type TypographyType = typeof TypographyTypes[number]; declare const TextDecorations: ["line-through", "overline", "underline"]; export type TextDecoration = typeof TextDecorations[number]; export interface TypographyProps { type?: TypographyType; className?: string; children?: React.ReactNode; style?: any; id?: any; hoverTextDecoration?: TextDecoration; } declare const Typography: React.ForwardRefExoticComponent>; export default Typography;