/** Gets closest point from list of points */
export default function getClosestPoint(point: {
    x: number;
    y: number;
}, samples: DOMPoint[]): {
    x: number;
    y: number;
};
//# sourceMappingURL=getClosestPoint.d.ts.map