export declare function validateSubmoduleWorkingBranches(workspaceRoot: string): Promise; /** * Warn when an active change was created via `aiws change new` without ever * running `aiws change start`: missing `base_branch` (and, for workspaces with * `.gitmodules`, missing `submodule_branches` snapshot) means ADR-0002's * brand/submodule enforcement never ran and finish-time submodule checks are * no-ops. Suggest completing the start flow instead of silently proceeding. * * @param {string} workspaceRoot */ export declare function warnIncompleteChangeInit(workspaceRoot: string): Promise; /** * @param {{ targetPath: string, stamp?: boolean }} options */ export declare function validateCommand(options: any): Promise;