import React from 'react';
import { LexicalNode } from 'lexical';
import { MapProps } from './types';
interface DatasetWithContent {
    metadata: {
        id: string;
        name: string;
        description: string;
        layers?: any[];
        [key: string]: any;
    };
    [key: string]: any;
}
interface EditorMapProps extends MapProps {
    node?: LexicalNode & {
        setProps?: (props: Partial<MapProps>) => void;
    };
    allAvailableDatasets?: DatasetWithContent[];
}
declare const MapEditorWrapper: React.FC<EditorMapProps>;
export default MapEditorWrapper;
//# sourceMappingURL=MapEditor.d.ts.map