import React from 'react'; interface FlowStatusTextProps { flow?: { isCompleted?: boolean; status?: number; userTaskType?: number; }; style?: React.CSSProperties; } export declare const FlowStatusText: (props: FlowStatusTextProps) => JSX.Element; export {};