/**
 * Runs the function the moment that this function is called.
 *
 * Sounds similar to useEffect(cb, []) but it actually is not. Unlike
 * useEffect, this function will be called immediately.
 */
export declare function useOnce(cb: () => void): void;
