import { Dispatch, SetStateAction } from 'react'; type UseObjectStateReturn = [ { [key: string]: T; }, (k: string, t: T) => void, (k: string) => void, (oldKey: string, newKey: string) => void, Dispatch> ]; export declare const useObjectState: (initialValue?: { [key: string]: T; }) => UseObjectStateReturn; export {};