import type { FC } from 'react'; interface AttachmentItemProps { name?: string; onClick?: () => void; } declare const AttachmentItem: FC; export default AttachmentItem;