import { Projection } from "../lib/projections";
export declare type SchemaMap = Record<string, any>;
export default function Editor(props: {
    onChange: (code: string) => void;
    code: string;
    schema: any;
    projections?: Projection[];
    height?: string;
    onTargetNodeChanged?: (newNode: any, oldNode: any) => void;
}): JSX.Element;
