// navigation.types.ts import { ParamListBase } from '@react-navigation/native'; import { Conversation } from '@/app/lib/conversation'; export type RootStackParamList = { LanguageSelection: undefined; ConversationThread: undefined; Settings: undefined; Conversation: { conversation?: Conversation }; };