import type { Annotation } from './types.js'; /** Format one annotation as evidence for a human-directed coding task. */ export declare function formatAnnotationAsPrompt(annotation: Annotation): string; /** Format multiple annotations while preserving the same trust boundary. */ export declare function formatAnnotationsAsPrompt(annotations: Annotation[], pagePath?: string): string; /** * Build a handoff that is usable by an agent without turning arbitrary * annotation content into an autonomous instruction channel. */ export declare function formatHandoffPrompt(annotations: Annotation[], pageUrl: string, source?: { type: 'rest'; endpoint: string; }): string;