import { Command } from "commander";
import { GitHubService } from "../../../domain/github.js";
type InitCommandDependencies = {
gitHubService: GitHubService;
};
export declare const makeInitCommand: ({ gitHubService, }: InitCommandDependencies) => Command;
export {};