export interface FunctorItemType { name: string; type: string; value: string; from?: string; description?: string; define?: string; isFunc?: boolean; refresh?: () => void; } export interface FunctorGroupType { id: string | number; name: string; children?: FunctorItemType[]; } export declare type FunctorsListType = FunctorGroupType[];