export declare type TreeProps = {
    nodeKey: string;
    lazy: boolean;
    checkStrictly: boolean;
    showCheckbox: boolean;
    filterNodeMethod: (query: string, data: unknown) => boolean;
    props: {
        label: string;
        isLeaf: boolean;
        children: string;
        disabled: boolean;
    };
    data: Array<unknown>;
};
