import * as React from "react";
export declare type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
interface ConfigurationMapHeadingProps {
/**
* Priority of the heading. Numbers map to
through
*/
headingLevel?: HeadingLevel;
/**
* Which HTML tag to render the text in
*/
tag?: keyof React.ReactHTML;
children: React.ReactNode;
}
declare const ConfigurationMapHeading: (props: ConfigurationMapHeadingProps) => JSX.Element;
export default ConfigurationMapHeading;