import React from 'react'; import { EntitySchema, RelationSchema, SchemaRoot } from 'fusefx-modeldescription'; import { EntityLayout } from '../../../[Move2LayoutDescription]/EntityLayout'; declare const StructureNavigation: React.FC<{ currentRecord: any; hideList: any; entitySchema: EntitySchema; schemaRoot: SchemaRoot; onRelationSelected: (rel: RelationSchema) => void; onRelationEnter: (rel: RelationSchema) => void; setMode: (mode: 'list' | 'details') => void; mode: 'list' | 'details'; currentRelation: RelationSchema | null; className?: string; dirty: boolean; entityLayout?: EntityLayout; classNameBorder?: string; }>; export default StructureNavigation;