lost-sia
Version:
Single Image Annotation Tool
9 lines (8 loc) • 376 B
TypeScript
import { AnnotationSettings, ExternalAnnotation } from '../../types';
type DemoWrapperProps = {
annotations?: ExternalAnnotation[];
annotationSettings?: AnnotationSettings;
isLoading?: boolean;
};
declare const DemoWrapper: ({ annotations, annotationSettings, isLoading, }: DemoWrapperProps) => import("react/jsx-runtime").JSX.Element;
export default DemoWrapper;