import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface TitleProps { children: ReactNode; className?: string | null; } /** * The `` component is used to provide a title to a subsequent component * (table, image, video, code block). The Title should be used in favor of other * techniques for bolded text (h4s) to preserve page structure and heading hierarchy. */ export declare const Title: MdxComponent<TitleProps>; export {};