declare const debugStore: { markedComponentIds: Set & Omit, keyof Set>; }; /** * 标记组件用于调试 */ export declare function markComponentForDebug(componentId: string): void; /** * 取消标记组件 */ export declare function unmarkComponentForDebug(componentId: string): void; /** * 切换组件的调试标记状态 */ export declare function toggleComponentDebug(componentId: string): boolean; /** * 检查组件是否被标记用于调试 */ export declare function isComponentMarkedForDebug(componentId: string): boolean; /** * 获取所有被标记的组件 ID */ export declare function getMarkedComponentIds(): string[]; /** * 清除所有调试标记 */ export declare function clearAllDebugMarks(): void; export { debugStore };