import { BridgeConfig } from '../types/config.js'; /** * Use to periodically re-fetch the bridge config. This is needed in case any of * the wardens returns disableFrontend === true which should shutdown the * frontend immediately. * * @param fetchFn use fetchConfig() by default, this param is provided so it can * be customized in the extension. * * @example * useBridgeConfigUpdater(() => fetchConfig("main")); */ declare function useBridgeConfigUpdater(fetchFn: () => Promise): void; export { useBridgeConfigUpdater };