import React from 'react';
import { CodeEditorProps } from './CodeEditor';
export type LiveEditorProps = Omit<CodeEditorProps, 'code' | 'language' | 'theme' | 'onChange'>;
export declare const LiveEditor: (props: LiveEditorProps) => React.JSX.Element;
