import { State, PortRecordMap, LinkRecordMap, Id } from '../customTypings/index.d'; export declare const getDetachedLinks: ((state: any, ...params: any) => import("immutable").Iterable) & import("reselect").OutputSelectorFields<(args_0: LinkRecordMap, args_1: PortRecordMap) => import("immutable").Iterable, { clearCache: () => void; }> & { clearCache: () => void; }; /** * get outgoing link from a port * * @return {Link} */ export declare function portOutLink(state: State, portId: Id): any; /** * get ingoing link from a port * * @return {Link} */ export declare function portInLink(state: State, portId: Id): any; /** * get outgoing linkId from a node * * @return number */ export declare function outLink(state: State, nodeId: Id): any; /** * get inGoing linkId from a node * * @return number */ export declare function inLink(state: State, nodeId: Id): any; export default getDetachedLinks;