import { ComponentState, PropsWithoutRef } from 'react'; declare type Dependency = PropsWithoutRef | ComponentState; export default function useComputedState(computed: () => any, deps: Dependency[]): any; export {};