export function match({ keyframe, querypoints: rawQuerypoints, querywidth, queryheight, debugMode, expectedScale }: { keyframe: any; querypoints: any; querywidth: any; queryheight: any; debugMode: any; expectedScale: any; }): { debugExtra: { constellationMatches: { querypoint: any; keypoint: { x: any; y: any; angle: any; scale: any; }; d: number; }[]; houghMatches: any[]; inlierMatches: any[]; matches2: { querypoint: any; keypoint: { x: any; y: any; angle: any; scale: any; }; }[]; houghMatches2: any[]; inlierMatches2: any[]; }; H?: undefined; matches?: undefined; } | { H: any[]; matches: any[]; debugExtra: { constellationMatches: { querypoint: any; keypoint: { x: any; y: any; angle: any; scale: any; }; d: number; }[]; houghMatches: any[]; inlierMatches: any[]; matches2: { querypoint: any; keypoint: { x: any; y: any; angle: any; scale: any; }; }[]; houghMatches2: any[]; inlierMatches2: any[]; }; };