export interface Settings { openAiApiKey: string | null; screenshotOneApiKey: string | null; isImageGenerationEnabled: boolean; editorTheme: string; } export enum AppState { INITIAL = "INITIAL", CODING = "CODING", CODE_READY = "CODE_READY", }