import { ListItemModel } from '../../model/list-item/list-item';
export declare class ListItemComponent {
    callbackItemInfo: Function;
    callbackItemCheck: Function;
    callBackOneItemSelected: Function;
    eventProcessImage: Function;
    _item: ListItemModel;
    hideIcons: boolean;
    imageSrc: string;
    commonName: string;
    scientificName: string;
    imageId: string;
    showCheckBox: boolean;
    infoIcons: any;
    checked: boolean;
    culture: any;
    cultureColor: string;
    constructor();
    ngOnInit(): Promise<void>;
    onClick(): void;
    onCheck(): void;
    itemInfo(item: any): void;
}
