import type { AnnotatedFrame, AnnotateOptions } from "./types.js"; /** * Parse input and return one annotation structure per emitted frame. * * Use this when callers want to inspect annotation lines programmatically * instead of flattening the whole stream to one rendered string. */ export declare function annotateFrames(input: Uint8Array | string, options?: AnnotateOptions): AnnotatedFrame[]; /** * Render one CESR stream into maintainer-oriented annotated text. * * Wrapper-aware rendering is attempted first so opaque wrapper payloads can be * preserved faithfully before falling back to frame-by-frame annotation. */ export declare function annotate(input: Uint8Array | string, options?: AnnotateOptions): string; //# sourceMappingURL=annotator.d.ts.map