/** * A hook similar to useEffect but skips the first execution on the initial mount. */ export declare function useDidUpdateEffect(fn: () => void, inputs: any[]): void;