import { SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { AllSystemProps } from './system-props'; declare const defaultElement = "h2"; export declare type HeadingProps = SxProp & AllSystemProps; declare type HeadingComponent = ForwardRefComponent; export declare const Heading: HeadingComponent; export {};