import type { paths } from "../__generated__/api/v1.js";
import type { Annotation } from "../types/annotations.js";
type SessionAnnotationData = paths["/v1/session_annotations"]["post"]["requestBody"]["content"]["application/json"]["data"][0];
/**
 * Parameters for a single session annotation
 */
export interface SessionAnnotation extends Annotation {
    sessionId: string;
    /**
     * The entity that performed the annotation
     */
    annotatorKind?: SessionAnnotationData["annotator_kind"];
}
/**
 * Convert a SessionAnnotation to the API format
 */
export declare function toSessionAnnotationData(annotation: SessionAnnotation): SessionAnnotationData;
export {};
//# sourceMappingURL=types.d.ts.map