import { ContextValue, DOMRenderProps } from './utils'; import React, { HTMLAttributes } from 'react'; export interface HeadingProps extends HTMLAttributes, DOMRenderProps<'h1', undefined> { level?: number; } export declare const HeadingContext: React.Context>; export declare const Heading: React.ForwardRefExoticComponent>;