/** * Returns a stateful value, and a function to update it. The value will also * be updated if the input value changes. * @param inputValue This will be used as the initial state value and will also * update the state if it changes. */ export declare function useDependentState(inputValue: D): [D, (data: D) => void]; export default useDependentState; //# sourceMappingURL=useDependentState.d.ts.map