import { Remote } from '../../../remotes';
export declare function add(url: string, global: boolean): Promise<Remote>;
export declare function remove(name: string, global: boolean): Promise<string>;
export declare function list(global: boolean): Promise<{
    [key: string]: string;
}>;
export declare function refresh(): void;
