/** * CLI Command: lex policy add-module * * Adds a new module to the lexmap.policy.json file. * Creates a minimal module structure with empty owns_paths array. * * Usage: * lex policy add-module # Add to default policy * lex policy add-module --policy # Add to custom policy */ export interface PolicyAddModuleOptions { /** Custom policy file path */ policyPath?: string; /** Output results in JSON format */ json?: boolean; } export interface PolicyAddModuleResult { success: boolean; moduleId: string; policyPath: string; message: string; alreadyExists?: boolean; } /** * Execute the 'lex policy add-module' command */ export declare function policyAddModule(moduleId: string, options?: PolicyAddModuleOptions): Promise;