import { ViewModel } from '@farris/devkit'; /** * UI状态服务 * @scope FrameComponent */ declare class UIStateService { private viewModel; constructor(viewModel: ViewModel); getState(componentId: string, stateName: string): void; setState(componentId: string, propertyName: string, value: any): void; } export { UIStateService };