import { BridgeConfig } from '../types/config.js'; /** * Get the bridge config from the bridge context. Use * useBridgeConfigUpdater() to ensure that the bridge config is * periodically re-fetch. * * @example * const { config, error } = useBridgeConfig(); */ declare function useBridgeConfig(): BridgeConfig; export { useBridgeConfig };