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