import { AnnotationType } from "./annotationType";
import { Annotation } from "./annotation";
export declare class AnnotationInfo extends Annotation {
    'annotationType': AnnotationType;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
