import { ReactElement } from 'react'; import { GraphStateMachine } from '../typings'; import './index.less'; export declare function Stage({ stateMachine, onChange, disable, children, }: { stateMachine: GraphStateMachine; onChange: Function; disable: boolean; children: ReactElement[]; }): JSX.Element;