import * as React from "react"; export 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; /** * Allows custom styling */ className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; children: React.ReactNode; } declare const ConfigurationMapHeading: ({ children, headingLevel, tag, className, "data-cy": dataCy }: ConfigurationMapHeadingProps) => React.JSX.Element; export default ConfigurationMapHeading;