import { StyledComponent, DefaultTheme } from 'styled-components'; import { SystemProps, StyledConfigType } from "../../../lib"; declare const variants: { h1: { fontSize: number; fontWeight: string; lineHeight: string; }; h2: { fontSize: number[]; fontWeight: string; lineHeight: string; }; h3: { fontSize: number[]; fontWeight: string; lineHeight: string; }; h4: { fontSize: number[]; fontWeight: string; lineHeight: string; }; h5: { fontSize: number[]; fontWeight: string; lineHeight: string; }; }; declare type CustomProps = { as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; variant?: keyof typeof variants; } & SystemProps; export declare const Heading: StyledComponent<'div', DefaultTheme, CustomProps> & StyledConfigType; export {};