import { type CommonOpts } from "./common.js";
interface GetOpts extends CommonOpts {
    target?: string;
    output?: string;
}
export declare function getCommand(repo: string, path: string, opts: GetOpts): Promise<void>;
export {};
