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