import { ArgTypes } from '@storybook/addons/dist/ts3.9/types'; import { Story } from '@storybook/react'; import { AllowedShape } from '../../../types/index'; import { AnnotationPropsOptional } from './../../Annotation'; export declare const argTypes: ArgTypes; export declare const BaseStoryTemplateWithAnnotations: (config: AnnotationPropsOptional) => Story; export declare const DefaultAnnotationStoryTemplate: Story; export declare const ovalAnnotations: { geometry: { type: AllowedShape; x: number; y: number; width: number; height: number; }; data: { id: string; text: string; }; }[]; export declare const OvalTemplateWithExistingAnnotations: Story; export declare const rectangularAnnotations: { geometry: { type: AllowedShape; x: number; y: number; width: number; height: number; }; data: { id: string; text: string; }; }[]; export declare const RectangleTemplateWithExistingAnnotations: Story; export declare const pointAnnotations: { geometry: { x: number; y: number; width: number; height: number; type: AllowedShape; }; data: { id: string; text: string; }; }[]; export declare const PointTemplateWithExistingAnnotations: Story;