import type { Annotation } from "../../types.js";
export interface AnnotationCommentOptions {
    readonly text: string;
    readonly color?: string;
}
export declare function annotationComment(options: AnnotationCommentOptions): Annotation<any>["render"];
