import type { GithubRef } from '../types';
type CloneContext = {
    root: string;
    directory: string;
    ref: GithubRef;
    user: string;
    password: string;
};
export declare function clone(ctx: CloneContext): void;
export {};
