import * as React from 'react'; /** * Wrap `React.useLayoutEffect` which will not throw warning message in test env */ export declare const useInternalLayoutEffect: typeof React.useLayoutEffect; export declare const useLayoutEffect: (callback: (mount: boolean) => void | VoidFunction, deps?: React.DependencyList) => void; export declare const useLayoutUpdateEffect: typeof React.useEffect;