import { ImageStyle } from "expo-image"; import React from "react"; import { ViewStyle } from "react-native"; import { ContentFit, BoundingBox } from "../hooks"; interface ImageWithBoundingBoxesProps { image?: { localUri?: string | null; uri?: string | null; width?: number | null; height?: number | null; }; boundingBoxes?: BoundingBox[]; style?: ViewStyle | ViewStyle[]; contentFit?: Exclude; imageStyle?: ImageStyle; testId?: string; } export declare function ImageWithBoundingBoxes({ image, boundingBoxes, style, imageStyle, contentFit, testId, }: ImageWithBoundingBoxesProps): React.JSX.Element; export {};