export declare class RasaImageMessage { /** * Image source */ imageSrc: string; /** * Alt text for the image */ imageAlt: string; /** * Message text */ text: string; /** * Image width */ width: number | string; /** * Image height */ height: number | string; /** * Is another component using it as child component */ isChild: boolean; componentDidLoad(): void; render(): any; }