import { MessageAttachment, Workflow } from '../../../Workflows/InkeepWorkflowTypes'; interface AttachmentsBarProps { selectedWorkflow: Workflow; messageAttachments?: MessageAttachment[]; setMessageAttachments: (attachments: MessageAttachment[]) => void; } declare const AttachmentsBar: ({ selectedWorkflow, messageAttachments, setMessageAttachments, }: AttachmentsBarProps) => import("react/jsx-runtime").JSX.Element; export default AttachmentsBar;