interface ConversationStarterConfig { projectPath: string; analysisId?: string; includeQuickTasks?: boolean; includeCurrentWork?: boolean; tokenLimit?: number; customTasks?: string[]; } interface ConversationStarterResult { success: boolean; filePath: string; message: string; tokenCount: number; filesCreated: string[]; } export declare function createConversationStarters(config: ConversationStarterConfig): Promise; export {}; //# sourceMappingURL=create-conversation-starters.d.ts.map