export interface IImage {
    source: string;
    type: string;
    element?: HTMLImageElement;
    svgData?: string;
}
