import { OnInit, EventEmitter } from '@angular/core';
export declare class CheckBarStateComponent implements OnInit {
    entries: Array<string>;
    currentState: string;
    state: boolean;
    hasImage: boolean;
    onItemClick: EventEmitter<{}>;
    constructor();
    ngOnInit(): void;
    isInCurrentState(state: string): boolean;
    onCircleClick(state: any): void;
    checkImg(): boolean;
}
