export interface SyncAiResponsesOptions { /** 输出文件夹 * @default '$CWD/.ai' */ outDir?: string; /** * 输入来源 * @enum {'clipboard', 'file'} * @default 'clipboard' */ input?: string; /** * 数据源 * 决定了数据处理的规范 * @enum {'aistudio.google','chat.qwen'} */ from?: string; /** * 输出风格 * @enum {'jixo:system','none'} */ style?: string; /** * 是否启用监听 */ watch?: boolean; } export declare const syncAiResponses: ({ outDir, input, from, style }: SyncAiResponsesOptions, argv: string[]) => Promise; //# sourceMappingURL=sync-ai-responses.d.ts.map