/**
 * The response from the helm repo commands.
 */
export declare class Repository {
    readonly name: string;
    readonly url: string;
    /**
     * Constructs a new Repository.
     *
     * @param name the name of the repository.
     * @param url  the url of the repository.
     * @throws Error if any of the arguments are null or blank.
     */
    constructor(name: string, url: string);
}
