import { FunctionComponent } from 'react';
export interface DescriptionProps {
    markdown: string;
}
/**
 * A markdown description for a component, typically used to show the
 * components docgen docs.
 */
export declare const Description: FunctionComponent<DescriptionProps>;
