export declare const makeDataListWithTree: (length?: number, childrenLength?: number) => { id: string; label: string; children: { id: string; label: string; }[] | undefined; }[];