import { EventEmitter } from '../../stencil-public-runtime'; export declare class RasaFileDownloadMessage { /** * URL of the file to download */ fileUrl: string; /** * The file name for the downloaded file */ fileName: string; /** * Message text */ text: string; /** * User clicked on file download */ fileDownloadStarted: EventEmitter; componentDidLoad(): void; private onDownloadClick; render(): any; }