import type { PropType, ExtractPropTypes } from 'vue';
import type { TreeDataInterface } from './interface';
export declare const Props: {
    readonly data: {
        readonly type: PropType<TreeDataInterface>;
        readonly default: () => [];
    };
};
export declare type TreePropsType = ExtractPropTypes<typeof Props>;
