import * as React from 'react';
export interface MarkdocExampleProps {
    language: string;
    rawContent: string;
    renderDemo?: boolean;
    demoContent: React.ReactNode[];
    withLabels?: boolean;
    codeLabel?: string;
    resultLabel?: string;
    title?: string;
}
export declare function MarkdocExample(props: MarkdocExampleProps): React.JSX.Element;
