import { LocaleType } from '../mintconfig/localization.js'; export type Translation = { questionText: string; }; export type StarterQuestionType = { _id: string; deploymentId: string; questionText: string; status: 'active' | 'archived'; generatedBy: 'manual' | 'cron' | 'contextual'; path?: string; translations?: Record; createdAt: Date; updatedAt: Date; };