import Scope from './scope';
export default class Repository {
    scope: Scope;
    path: string;
    constructor(scope: Scope);
    getPath(): string;
    ensureDir(): Promise<void>;
}
