import { Border } from "./border";
import { VerticalAlignment } from "./verticalAlignment";
import { HorizontalAlignment } from "./horizontalAlignment";
import { LinkHighlightingMode } from "./linkHighlightingMode";
import { MarginInfo } from "./marginInfo";
import { Color } from "./color";
import { AnnotationFlags } from "./annotationFlags";
import { Rectangle } from "./rectangle";
import { LinkElement } from "./linkElement";
export declare class FormField extends LinkElement {
    'partialName': string;
    'fullName': string;
    'rect': Rectangle;
    'value': string;
    'pageIndex': number;
    'height': number;
    'width': number;
    'zIndex': number;
    'isGroup': boolean;
    'parent': FormField;
    'isSharedField': boolean;
    'flags': Array<AnnotationFlags>;
    'color': Color;
    'contents': string;
    'margin': MarginInfo;
    'highlighting': LinkHighlightingMode;
    'horizontalAlignment': HorizontalAlignment;
    'verticalAlignment': VerticalAlignment;
    'border': Border;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
