import { IsomorphicEvent } from '@aracna/web'; export interface ImageLoadEventDetail { base64?: string; src: string; } export declare class ImageLoadEvent extends IsomorphicEvent { constructor(src: string, base64?: string); }