import { Rotation } from "./rotation";
import { HorizontalAlignment } from "./horizontalAlignment";
import { LinkElement } from "./linkElement";
export declare class StampBase extends LinkElement {
    'background': boolean;
    'horizontalAlignment': HorizontalAlignment;
    'opacity': number;
    'rotate': Rotation;
    'rotateAngle': number;
    'xIndent': number;
    'yIndent': number;
    'zoom': number;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
