import { default as Annotation } from '../../Annotation/logic/Annotation';
import { default as AnnotationTool } from '../../models/AnnotationTool';
import { Label, UiConfig } from '../../types';
type CanvasProps = {
    annotations?: Annotation[];
    image: string;
    selectedAnnoTool: AnnotationTool;
    possibleLabels: Label[];
    preventScrolling: boolean;
    uiConfig: UiConfig;
};
declare const CanvasWithOffset: ({ annotations, image, selectedAnnoTool, possibleLabels, preventScrolling, uiConfig, }: CanvasProps) => import("react/jsx-runtime").JSX.Element;
export default CanvasWithOffset;
