import type { IConnection, IConnections } from '.'; type ConnectionEntry = { sourceIndex: number; value: { index: number; connection: IConnection; } | null; }; export type INodeConnectionsDiff = Record; export type ConnectionsDiff = { added: Record; removed: Record; }; export declare function compareConnections(prev: IConnections, next: IConnections): ConnectionsDiff; export {}; //# sourceMappingURL=connections-diff.d.ts.map