/// import { IAnnotation } from '../../types/index'; interface FancyRectangleProps { annotation: IAnnotation; className?: string; style?: object; } declare function FancyRectangle(props: FancyRectangleProps): JSX.Element | null; export default FancyRectangle;