import { VelocitySource } from "@mcoda/core"; interface ParsedArgs { workspaceRoot?: string; project?: string; epic?: string; story?: string; assignee?: string; quiet: boolean; noColor: boolean; noTelemetry: boolean; spPerHour?: number; spPerHourImplementation?: number; spPerHourReview?: number; spPerHourQa?: number; velocityMode?: VelocitySource; velocityWindow?: number; json: boolean; debug: boolean; } export declare const parseEstimateArgs: (argv: string[]) => ParsedArgs; export declare const formatTimeLeft: (hours: number | null | undefined) => string; export declare class EstimateCommands { static run(argv: string[]): Promise; } export {}; //# sourceMappingURL=EstimateCommands.d.ts.map