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