import { Connection } from "../DataStructures/Connection"; /** * This function takes in a list of connections and in bulk gets the concepts that are related with these connections. * @param connectionList list of connections whose concepts need to be found out. */ export declare function FindConceptsFromConnections(connectionList?: Connection[]): Promise;