import { ComponentPropsWithoutRef, FunctionComponent } from 'react';
export interface HeadingProps extends ComponentPropsWithoutRef<'h1'> {
    asDiv?: boolean;
    level?: 1 | 2 | 3 | 4 | 5 | 6;
}
export declare const Heading: FunctionComponent<HeadingProps>;
