interface ExistingConversation { workDir?: string; claudeSessionId?: string | null; lastClaudeSessionId?: string | null; } export declare function resolveNewActionDraftSessionDir(brainDataDir: string, actionDraftId: string | undefined, explicitWorkDir: string | undefined, resumeSessionId: string | undefined, existingConversation: ExistingConversation | null | undefined): string | undefined; export {};