import { FC, ReactElement } from 'react'; import { KauthLang } from '../common/locale'; import './style.less'; export interface IWorkflowProps { type?: 'default' | 'navigation'; locale?: KauthLang; instanceId?: string; stateMachineAndNodes?: { stateMachine: any; nodes: any[]; }; children: ReactElement[] | ReactElement; } export declare const Provider: FC;