import * as React from 'react';
/**
 * Runs an effect once, when `condition` is true.
 */
export declare const useRunOnce: (condition: boolean, effect: React.EffectCallback) => void;