import React from 'react'; declare const DummyFormContext: React.Context; declare const useDummyFormContext: () => any; declare const getObjByPath: (obj: any, path: string) => { chained: boolean; notcompletechain: boolean; value: undefined; } | undefined; declare const setObjByPath: (obj: any, path: string, val: any) => void; export { DummyFormContext, useDummyFormContext, getObjByPath, setObjByPath };