import { IItem } from './types'; import { Optional } from '../../../types'; declare function getId(data: Optional, 'id'>): string; declare function isChild(parentId: string, childId: string): boolean; declare function getItemsIds(items: Array): Array; declare function getLevel(id: string): number; declare function getChildren(id: string | undefined, items: Array): IItem[]; export { getChildren, getId, getItemsIds, getLevel, isChild }; //# sourceMappingURL=utils.d.ts.map