export interface ITreeItem {
    id: string;
    label: string;
    children?: ITreeItem[] | null;
}
export declare enum SelectionType {
    Child = "child",
    Parent = "parent",
    All = "all",
    None = "none"
}
export declare type SelectAction = 'click' | 'check';
