import { SelectService } from '../services/select.service';
export declare class SelectableItem {
    id: string;
    text: string;
    data: any;
    svc: SelectService;
    _selected: boolean;
    children?: SelectableItem[];
    isOpen: boolean;
    matchFilter: boolean;
    isVisible: boolean;
    constructor(id: string, text: string, data: any, svc: SelectService);
    readonly hasChild: boolean;
    readonly checked: boolean;
    selected: boolean;
}
