export interface SurveyPromptOutput { id: string; choice: number; } export interface IEngineOutput { id: string; userId: string; respondedAt: string; results: SurveyPromptOutput[]; } export interface IEngineOptions { outputFormat: 'json' | 'csv' | 'json-raw' | undefined; userId?: string; } //# sourceMappingURL=IEngineOutput.d.ts.map