export interface InstallCodexPromptsOptions { readonly codexHome?: string; readonly dryRun?: boolean; } export interface InstallClientPromptsOptions { readonly targetDir?: string; readonly projectRoot?: string; readonly dryRun?: boolean; } export interface InstallCodexPromptsResult { readonly sourceDir: string; readonly targetDir: string; readonly files: string[]; readonly dryRun: boolean; } export declare function installCodexPrompts(options?: InstallCodexPromptsOptions): Promise; export declare function installCursorPrompts(options?: InstallClientPromptsOptions): Promise; export declare function installClaudePrompts(options?: InstallClientPromptsOptions): Promise;