import React from 'react'; type EntryType = { left: number; top: number; width: number; height: number; label: string; }; type Props = { url: string; inputMethod: 'text' | 'select'; labels?: string | string[]; onChange: (entries: EntryType[]) => void; borderWidth?: number; }; declare const BBoxAnnotator: React.ForwardRefExoticComponent>; export { type EntryType, BBoxAnnotator as default };