import { OnInit, EventEmitter } from '@angular/core'; /** * 总共有三种状态: * 0 不选中 * 1 选中 * 2 审核中 */ declare type State = 0 | 1 | 2; export declare class IccStateComponent implements OnInit { state: State; offsetArr: number[]; stateChange: EventEmitter; constructor(); ngOnInit(): void; changeState(): void; } export {};