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