/** * @uiName Image Component * @canvasRenderer always-replace */ export declare class ImageComponent { /** * @undocumented * @uiName Hide Image */ ishidden: boolean; /** * @uiName Image URL * @uiWidget imageUpload * */ url: string; /** * Define the width of the image with a pixel amount. * * @uiName Width */ width: number; /** * Define the radius of the corners with a pixel amount. * * @uiName Border Radius */ borderradius: number; /** * @uiName Horizontal Alignment * @uiEnum ["left", "center", "right"] * @uiEnumNames ["Left", "Center", "Right"] * @default center */ alignment: string; /** * Additional CSS applied to the image element * * @uiName CSS * @uiWidget textArea * @default padding-top: 38px; padding-bottom: 7px; */ css: string; render(): any; }