export interface ApplyArgs { 'project-root': string; agents?: string; config?: string; mcp: boolean; 'mcp-overwrite': boolean; gitignore?: boolean; 'gitignore-local'?: boolean; verbose: boolean; 'dry-run': boolean; 'local-only': boolean; nested?: boolean; backup?: boolean; skills?: boolean; subagents?: boolean; } export interface InitArgs { 'project-root': string; global: boolean; } export interface RevertArgs { 'project-root': string; agents?: string; config?: string; 'keep-backups': boolean; verbose: boolean; 'dry-run': boolean; 'local-only': boolean; } /** * Handler for the 'apply' command. */ export declare function applyHandler(argv: ApplyArgs): Promise; /** * Handler for the 'init' command. */ export declare function initHandler(argv: InitArgs): Promise; /** * Handler for the 'revert' command. */ export declare function revertHandler(argv: RevertArgs): Promise;