Hi Milind Barve,
https://docs.mendix.com/apidocs-mxsdk/apidocs/property-types-pluggable-widgets
can refer this link mendix provides a component type Image
https://docs.mendix.com/apidocs-mxsdk/apidocs/client-apis-for-pluggable-widgets#imagevalue
export interface WebImage {
readonly uri: string;
readonly name: string;
readonly altText?: string;
}
export type NativeImage = Readonly<ImageURISource & { name?: string; } | string | number>;
export type ImageValue = WebImage | NativeImage;
hope this helps you
cheers,
Narendran