import { Command } from 'commander'; import { type CommandRunner, type GhWrapper } from '@generacy-ai/cockpit'; interface StatusCliOptions { json?: boolean; } export interface StatusDeps { gh?: GhWrapper; runner?: CommandRunner; stdout?: (line: string) => void; stderr?: (line: string) => void; logger?: { warn: (msg: string) => void; }; } export declare function runStatus(epicRef: string | undefined, options: StatusCliOptions, deps?: StatusDeps): Promise; export declare function statusCommand(): Command; export {}; //# sourceMappingURL=status.d.ts.map