import * as React from 'react';
type Props = React.PropsWithChildren<{
    inProgress: boolean;
    component: React.JSXElementConstructor<any>;
    componentProps: any;
}>;
declare const MarkdownComponentSmoother: React.FC<Props>;
export default MarkdownComponentSmoother;
