export declare const TreeBuilder: {
    getSpoolTree(spools: any): {
        label: string;
        nodes: string[];
    };
    getApiTree(api: any): {
        label: string;
        nodes: {
            label: string;
            nodes: any;
        }[];
    };
    getModelTree(models: any): {
        label: string;
        nodes: any;
    };
    getResolverTree(resolvers: any): {
        label: string;
        nodes: any;
    };
    getPoliciesTree(policies: any): string[];
    getControllerTree(controllers: any): {
        label: string;
        nodes: any;
    };
    getServiceTree(services: any): {
        label: string;
        nodes: any;
    };
    getOtherTree(others: any, name?: string): {
        label: string;
        nodes: any;
    };
};
