import { FunctionComponent } from 'react';
export interface HeadingProps {
    children: JSX.Element | string;
    disableAnchor?: boolean;
}
export declare const Heading: FunctionComponent<HeadingProps>;
