import { Dispatch, SetStateAction } from "react"; export declare type OnChangeDispatch = Dispatch>; export declare type SetStateActionFunction = (prevState: TObj) => TObj; export declare function useOnChangeChildDispatch(key: TKey, setParent: OnChangeDispatch): OnChangeDispatch;