/*! Copyright (c) 2019, XAPPmedia */ import { Request, SystemDependable } from "stentor-models"; /** * Based on the provided request, it finds the slot dependent object * that is a match. * * @public * @param objects - Objects to check against the request * @param request - Request that the objects will be tested against * @returns The matched object or undefined if no match was found. */ export declare function findSystemDependentMatch(objects: (T | SystemDependable)[], request: Request): SystemDependable | undefined;