import React from 'react'; import { BoxProps } from '../Box'; export declare const DEFAULT_HEADING_LEVEL = 2; export declare const HeadingLevelContext: React.Context; export interface HeadingProps extends BoxProps<'h2'> { /** The size of the font */ size?: 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | '2x-large' | '3x-large'; } /** * Responsive typographic component. Anywhere you want to add a title to something * then you can use this * */ export declare const Heading: React.ForwardRefExoticComponent & React.RefAttributes>; export default Heading;