import { InstallOptions, InstallResult } from "./commands/install";
/**
 * Install AICM rules based on configuration
 * @param options Installation options
 * @returns Result of the install operation
 */
export declare function install(options?: InstallOptions): Promise<InstallResult>;
export type { InstallOptions, InstallResult } from "./commands/install";
export type { ResolvedConfig, Config, RuleFile, MCPServers, } from "./utils/config";
