import { FC } from 'react'; import type { BrowserProps, CustomProps, FileProps, RealtimeProps, TaskProps, WorkspaceProps } from './types'; export type { FileActionRef } from './types'; declare const RealtimeComponent: FC; declare const BrowserComponent: FC; declare const TaskComponent: FC; declare const FileComponent: FC; declare const CustomComponent: FC; /** * 工作空间组件 * 提供多标签页界面,支持实时跟随、浏览器、任务、文件等功能模块 */ declare const Workspace: FC & { Realtime: typeof RealtimeComponent; Browser: typeof BrowserComponent; Task: typeof TaskComponent; File: typeof FileComponent; Custom: typeof CustomComponent; }; export * from './File'; export type { HtmlPreviewProps } from './HtmlPreview'; export type { BrowserProps, CustomProps, FileProps, RealtimeProps, TabConfiguration, TabItem, TaskProps, WorkspaceProps, } from './types'; export default Workspace;