import { CtlBase } from './CtlBase'; /** * 按钮组件 * @author yvan */ export declare class CtlImage extends CtlBase { static create(module: any, vjson: any): CtlImage; set value(nv: string); get value(): string; get imgWidth(): string; set imgWidth(nv: string); get imgHeight(): string; set imgHeight(nv: string); get width(): any; set width(nv: any); get height(): any; set height(nv: any); getImageHtml(): string; private _value; private _imgWidth; private _imgHeight; private _width; private _height; private _refreshImage; }