import { IconPack } from '../../exports'; /** * A component which renders a file message. */ export declare class DyteFileMessageView { /** Name of the file */ name: string; /** Size of the file */ size: number; /** Url of the file */ url: string; /** Icon pack */ iconPack: IconPack; render(): any; }