import { Service } from '../base/service'; export interface ImageService extends Service { readonly url?: string; insertImageWithUrl(url: string): void; setUrl(url: string | undefined): void; } export declare const NULL_IMAGE_SERVICE: ImageService;