import type { Annotation } from "../../types.js";
export interface AnnotationArrowOptions {
    readonly direction?: "up" | "down" | "left" | "right";
    readonly color?: string;
    readonly size?: number;
}
export declare function annotationArrow(options?: AnnotationArrowOptions): Annotation<any>["render"];
