export interface RollbackOpts { workflow?: string; org?: string; to?: string; list?: boolean; yes?: boolean; } /** * `solosquad rollback` * --list : show the snapshot history for the org * --workflow : revert to the snapshot taken just before * the most recent spawn for that workflow * --workflow --to : revert to a specific snapshot SHA * * Only touches /memory/ + /workflows/. Repo code is untouched. */ export declare function rollbackCommand(opts: RollbackOpts): Promise;