import { type ClassValue } from 'clsx'; /** * @internal * 处理 className 与 tailwind-merge */ export declare function clsxWithTw(...inputs: ClassValue[]): string; /** * @internal * 当前是否是预览态 */ export declare function isPreview(): boolean; /** * @internal * 标准化基础路径,确保路径格式一致 * 移除末尾的斜杠,确保路径不以斜杠结尾 */ export declare function normalizeBasePath(basePath?: string): string; export declare function getWsPath(): string; /** 判断是否是沙箱模式 */ export declare function isSparkRuntime(): boolean;