easemob-chat-uikit
Version:
   ![GitHub last c
20 lines (19 loc) • 746 B
TypeScript
import React from 'react';
import { BaseMessageProps, renderUserProfileProps } from '../baseMessage';
import { IconProps } from '../../component/icon';
import type { FileMessageType } from '../types/messageType';
export interface FileMessageProps extends BaseMessageProps {
fileMessage: FileMessageType;
iconType?: IconProps['type'];
prefix?: string;
className?: string;
style?: React.CSSProperties;
bubbleClass?: string;
nickName?: string;
type?: 'primary' | 'secondly';
renderUserProfile?: (props: renderUserProfileProps) => React.ReactNode;
}
declare const FileMessageOut: ((props: FileMessageProps) => import("react/jsx-runtime").JSX.Element) & {
displayName: string;
};
export default FileMessageOut;