import type { ComponentWithDocGenInfo } from './types'; declare type DescriptionProps = { /** Component with documentation info for which display the description. */ of: ComponentWithDocGenInfo; }; /** React component used to display the description of a React component. */ export declare const Description: ({ of }: DescriptionProps) => JSX.Element | "Loading..."; export {};