import { Annotation, AnnotationBody, AnnotationTarget } from '@annotorious/core'; export interface SupabaseAnnotation extends Annotation { target: SupabaseAnnotationTarget; bodies: SupabaseAnnotationBody[]; layer_id?: string; visibility?: Visibility; } export interface SupabaseAnnotationTarget extends AnnotationTarget { version?: number; } export interface SupabaseAnnotationBody extends AnnotationBody { format?: string; version?: number; } export type Visibility = string; export declare const Visibility: { (value: string): string; PRIVATE: string; }; //# sourceMappingURL=SupabaseAnnotation.d.ts.map