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