// Public API — consumed only by the base44-mobile host (see CLAUDE.md). // Keep this surface minimal: export exactly what the host imports, nothing more. // Anything the dev demo needs beyond this it deep-imports directly from src/. export { SuperagentHomeScreen } from './features/home/SuperagentHomeScreen'; export { SUPERAGENT_ATTACHMENT_SIZE_LIMIT_MB } from './features/attachments/mediaUtils'; export type { SuperagentHomeScreenHandle } from './types'; export type { SuperagentAttachmentPickerMode, SuperagentNativeMediaItem, } from './features/attachments/useSuperagentAttachmentPicker'; export type { SuperagentLiveAudioCaptureInput, SuperagentLiveAudioChunk, SuperagentLiveVoiceAudioAdapters, SuperagentVoiceRecorderAdapter, SuperagentSessionConfig, SuperagentShellAdapters, } from './runtime/useSuperagentRuntime';