export declare class SelectableItem {
    IsSelected: boolean;
    Item: any;
    constructor(IsSelected: boolean, Item: any);
}
