import type { Command } from "commander"; import type { OutputSchema, SingleResult } from "../../output/index.js"; import { type WorktreeCreateOptions } from "./create-input.js"; export interface WorktreeCreateResult { name: string; branchName: string; worktreePath: string; } export declare const createSchema: OutputSchema; export declare function runCreateCommand(options: WorktreeCreateOptions, _command: Command): Promise>; //# sourceMappingURL=create.d.ts.map