import { FC } from 'react';
import { GlobalConfig } from '../../types/global-config';
interface EditorProps extends GlobalConfig {
    className?: string;
    style?: React.CSSProperties;
    isSyncScroll: boolean;
}
declare const Editor: FC<EditorProps>;
export default Editor;
