import { Component } from '../component';
import { FlowProps } from './Props';
declare class Flow extends Component<FlowProps> {
update: () => void;
events: string[];
constructor(props: FlowProps);
componentWillUnmount(): void;
render(): {} | null;
}
export default Flow;