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