import { ProjectCreationWizardStep, SettingsCategory, UIState, } from '@aitube/clapper-services' export function getDefaultUIState(): UIState { const state: UIState = { isTopMenuOpen: false, showWelcomeScreen: true, hasBetaAccess: false, themeName: 'backstage', showApiKeys: false, showSettings: SettingsCategory.NONE, showImporter: false, showTimeline: true, showExplorer: false, showVideoPlayer: true, showAssistant: false, showFPS: false, followCursor: false, editorFontSize: 12, projectCreationWizardStep: ProjectCreationWizardStep.NONE, } return state }