import { Remote } from '../type'; export declare function matchRemoteWithNameAndExpose(remotes: Array, id: string): { pkgNameOrAlias: string; expose: string; remote: Remote; } | undefined; export declare function matchRemote(remotes: Array, nameOrAlias: string): Remote | undefined;