import React from "react"; import { TypographyColors } from "../Palette/export"; export interface IProps { children: any; size?: number; lineHeight?: number; font?: "48/52/bold" | "28/32/bold" | "24/28/bold" | "20/24/bold" | "16/20/bold" | "16/20" | "14/20" | "14/20/bold" | "12/16/bold"; fontWeight?: "bold"; [propName: string]: any; } export interface IHL extends IProps { color?: TypographyColors.azure | TypographyColors.greyDay | TypographyColors.plumbum | TypographyColors.white; } export interface IParagraph extends IProps { color?: TypographyColors.orange | TypographyColors.green | TypographyColors.redMain | TypographyColors.azure | TypographyColors.greyDay | TypographyColors.plumbum | TypographyColors.white; } export declare const H0: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const H1: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const H2: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const H3: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const H4: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const TypographyLarge: { H1: React.ForwardRefExoticComponent & React.RefAttributes>; H2: React.ForwardRefExoticComponent & React.RefAttributes>; H3: React.ForwardRefExoticComponent & React.RefAttributes>; H4: React.ForwardRefExoticComponent & React.RefAttributes>; H5: React.ForwardRefExoticComponent & React.RefAttributes>; H6: React.ForwardRefExoticComponent & React.RefAttributes>; }; export declare const Paragraph: React.ForwardRefExoticComponent & React.RefAttributes>;