export interface ISimpleTree { id: string | number; name: string; children?: Array; } export type TSimpleTrees = Array;