import FormFlowDataType from './FormFlowDataType'; /** * Creates a memoized Provider component to be used as form */ export default function useFormFlow(): { data: FormFlowDataType; onBlurByPath: (path: any) => void; onChangeByPath: (path: any, value: any) => void; setData: (transformer: (v: FormFlowDataType) => FormFlowDataType) => void; };