import { View } from './view'; type ImageOptions = { classNames?: string; }; export declare class Image extends View { private classNames?; constructor({ classNames }?: ImageOptions); load(src: string | Promise): void; renderSync(): HTMLElement; } export {};