UNPKG

279 BTypeScriptView Raw
1import { FunctionComponent } from 'react';
2export interface DescriptionProps {
3 markdown: string;
4}
5/**
6 * A markdown description for a component, typically used to show the
7 * components docgen docs.
8 */
9export declare const Description: FunctionComponent<DescriptionProps>;