export type ImageData = { data: Uint8ClampedArray; width: number; height: number; }; export type ScanOptions = { boxScaleIteration: number; boxOverlapRatio: number; }; export declare function scanAnchor(data: ImageData, options?: ScanOptions): string;