export declare class MediaflowBaseType {
    static Image: string;
    static Video: string;
    static ExternalVideo: string;
}
export interface MediaflowInformation {
    basetype?: string;
    filename?: string;
    filetype?: string;
    id: number;
    mediaId: string;
}
export interface MediaFlowImage extends MediaflowInformation {
    height: number;
    name: string;
    photographer: string;
    url: string;
    width: number;
}
export interface MediaFlowVideo extends MediaflowInformation {
    autoPlay: boolean;
    embedCode: any;
    embedMethod: string;
    startTime: string;
}
export interface MediaflowEventData {
    id: number;
    name: string;
    mediaId?: string;
    isSearch?: boolean;
}
