export interface DatasetMetadata {
    id: string;
    name: string;
    description?: string;
    layers?: any[];
    [key: string]: any;
}
export interface VEDAContentEditorProps {
    allAvailableDatasets?: any[];
    initialContent?: string;
    onChange?: (content: string) => void;
    className?: string;
}
export type { EditorPageProps } from '../VEDAContentEditor';
//# sourceMappingURL=types.d.ts.map