UNPKG

@plteam/chat-ui

Version:

CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript

13 lines (12 loc) 454 B
import * as React from 'react'; export type FileAttachmentButtonFilesConfig = { multiple?: boolean; acceptableFileFormat?: string | string[]; }; export type FileAttachmentButtonProps = { disabled?: boolean; onOpenFileDialog: (config?: FileAttachmentButtonFilesConfig) => void; onOpenDeviceCamera: () => void; }; declare const FileAttachmentButton: React.FC<FileAttachmentButtonProps>; export default FileAttachmentButton;