import { CaretSymbol } from "./caretSymbol";
import { Rectangle } from "./rectangle";
import { MarkupAnnotation } from "./markupAnnotation";
export declare class CaretAnnotation extends MarkupAnnotation {
    'frame': Rectangle;
    'symbol': CaretSymbol;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
