import { BaseCommand } from '../../base-command.js'; export interface DispatchInput { type: 'issue' | 'draft'; number: number; } export declare function parseDispatchInput(input: string): DispatchInput; export declare function branchName(issueNumber: number, title: string): string; export default class ForgeDispatch extends BaseCommand { static description: string; static args: { item: import("@oclif/core/interfaces").Arg>; }; static flags: { 'dry-run': import("@oclif/core/interfaces").BooleanFlag; verbose: import("@oclif/core/interfaces").BooleanFlag; json: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }