import { MessageAttachment, MessageAttachmentContentType, WorkflowModalProps } from './InkeepWorkflowTypes'; interface ContentFormProps { contentType: MessageAttachmentContentType; modalProps?: WorkflowModalProps; addAttachment: (attachment: MessageAttachment) => void; onClose: () => void; } declare function ContentForm({ contentType, modalProps, addAttachment, onClose, }: ContentFormProps): import("react/jsx-runtime").JSX.Element; export default ContentForm;