/**
 * @param connection
 * @param shape
 * @param oldBounds
 * @return
 */
export function getResizedSourceAnchor(connection: Connection, shape: Shape, oldBounds: Rect): Point;

export function getResizedTargetAnchor(connection: any, shape: any, oldBounds: any): any;
export function getMovedSourceAnchor(connection: any, source: any, moveDelta: any): import("../../../../util/Types.js").Point;
export function getMovedTargetAnchor(connection: any, target: any, moveDelta: any): import("../../../../util/Types.js").Point;
type Connection = import("../../../../core/Types.js").ConnectionLike;
type Shape = import("../../../../core/Types.js").ShapeLike;
type Point = import("../../../../util/Types.js").Point;
type Rect = import("../../../../util/Types.js").Rect;