import * as React from 'react';
import { MdastProps } from './types';
export interface Props extends Pick<MdastProps, 'to' | 'isCompact' | 'isFullWidth' | 'hideFootnotes' | 'isExpandable' | 'expand' | 'fontSize' | 'onDoubleClick' | 'scaleUpEmojiSrc' | 'placeholdersAfter' | 'placeholdersAfterLength' | 'maxPlaceholders' | 'LoadingBlock'> {
    src?: string | null;
    /**
     * Parse Markdown source only to inline elements and render
     * only inline elements.
     */
    inline?: boolean;
}
export declare const Markdown: React.FC<Props>;
