import { Box, Face, Shape, Point } from "./types"; export declare function euclidean2D(pt1: Point, pt2: Point): number; export declare function libsaffeLoss(faceBox: Box, shape: Shape): number; export declare function libsaffeCriteria(faces: Face[], shape: Shape): Face;