import { AbstractSource } from "./abstract-source"; /** * @export * @class Git * @implements {Source} */ export declare class Git extends AbstractSource { constructor(paths: { data: string; temp: string; }); /** * @param {string} value * @returns {Promise} * @memberof Git */ /** * @param {string} value * @returns {Promise} * @memberof Git */ exists(value: string): Promise; /** * @param {string} value * @returns {Promise} * @memberof Git */ update(value: string): Promise; protected preparePackage(value: string): Promise; } //# sourceMappingURL=git.d.ts.map