import React from "react"; import { ImageScale, BoundingBox } from "../hooks"; export interface BoundingBoxProps { box: BoundingBox; scale: ImageScale; testId?: string; } export declare const BoundingBoxView: React.FC;