import { TraceloopClient } from "../traceloop-client"; import { AnnotationCreateOptions } from "../../interfaces/annotations.interface"; export type AnnotationFlow = "user_feedback"; /** * Base class for handling annotation operations with the Traceloop API. * @internal */ export declare class BaseAnnotation { protected client: TraceloopClient; protected flow: AnnotationFlow; constructor(client: TraceloopClient, flow: AnnotationFlow); /** * Creates a new annotation. * * @param options - The annotation creation options * @returns Promise resolving to the fetch Response */ create(options: AnnotationCreateOptions): Promise; } //# sourceMappingURL=base-annotation.d.ts.map