/// import { DSLQuery } from '@lingxiteam/dsl'; import { LcdpPlatformKey } from '../../interfaces/types'; import './index.less'; export interface SimulatorProps { size?: [string, string]; DSLCore: DSLQuery; isMobile: boolean; platformType?: LcdpPlatformKey; rootIds?: string[]; canDrag?: boolean; prefixCls?: string; _pageZoneHoverContainerId?: string; /** * 不禁用dnd 优先级高于 canDarg */ disabledDnd?: boolean; /** * 是否允许选中 */ allowSelect?: boolean; } declare const SimulatorProvider: (props: any) => JSX.Element; export default SimulatorProvider;