import { UpdateObjectAtPropAndValue } from '../types'; export type GenericObjectState = [ data: T, setData: UpdateObjectAtPropAndValue, resetDefault: () => void, replace: (newValue: T) => void ]; declare const useGenericObjectState: (defaultData: T) => GenericObjectState; export default useGenericObjectState; //# sourceMappingURL=useGenericObjectState.d.ts.map