import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface H2Props { children: ReactNode; className?: string | null; headingClassName?: string | null; noAnchor?: boolean | null; [otherProp: string]: unknown; } export declare const H2: MdxComponent; export {};