import { ComponentSchema } from '../../../../types/src/index';
export interface TreeProps {
    draggable?: boolean;
    hoverKey?: string;
    options: ComponentSchema[];
    selectedKeys: string[];
}
