export interface ChiefStatusOpts { org?: string; } /** `solosquad chief status` — list active sessions + cost + activity. */ export declare function chiefStatusCommand(opts: ChiefStatusOpts): Promise; export interface ChiefResetOpts { org?: string; user?: string; reason?: string; yes?: boolean; } /** `solosquad chief reset` — archive existing session, mint a new id. */ export declare function chiefResetCommand(opts: ChiefResetOpts): Promise; /** `solosquad chief compact` — manual trigger for the chief-compaction cron. */ export declare function chiefCompactCommand(_opts: { org?: string; }): Promise;