import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface PageDescriptionProps { children: ReactNode; className?: string | null; } /** * The `` component is generally used for intro text at the top * of the page using the type token `fluid-heading-03`. */ export declare const PageDescription: MdxComponent; export {};