import type { TreeDataInterface } from './interface';
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComputedRef } from 'vue';
import type { TreeAddLevelReturnInterface as a } from '../../_interface';
declare const _sfc_main: DefineComponent<{
    readonly data: {
        readonly type: PropType<TreeDataInterface>;
        readonly default: () => [];
    };
}, {
    prop: {
        readonly data?: unknown;
    } & {
        data: TreeDataInterface;
    } & {};
    treeData: ComputedRef<a[]>;
    handleClick: (item: a, index: number) => void;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
    readonly data?: unknown;
} & {
    data: TreeDataInterface;
} & {}>, {
    data: TreeDataInterface;
}>;
export default _sfc_main;
