export declare class RasaImage { /** * Image source */ src: string; /** * Alt text for the image */ alt: string; /** * Image width */ width: number | string; /** * Image height */ height: number | string; showFallback: boolean; private handleImgError; private getDimension; render(): any; }