import type { FederationInfo } from '@softarc/native-federation/domain'; export type Remote = FederationInfo & { baseUrl: string; }; export declare function addRemote(remoteName: string, remote: Remote): void; export declare function getRemoteNameByBaseUrl(baseUrl: string): string | undefined; export declare function isRemoteInitialized(baseUrl: string): boolean; export declare function getRemote(remoteName: string): Remote | undefined; export declare function hasRemote(remoteName: string): boolean;