import { FileItem } from '../upload/interface'; interface AttachmentProps { className?: string; attachment?: FileItem[]; onClear?: (item: FileItem) => void; showClear?: boolean; } interface FileProps { url?: string; name?: string; size?: string; type?: string; } export declare const FileAttachment: (props: FileProps) => import("vue/jsx-runtime").JSX.Element; export declare const ImageAttachment: (props: { src: string; }) => import("vue/jsx-runtime").JSX.Element; declare const Attachment: (props: AttachmentProps) => import("vue/jsx-runtime").JSX.Element; export default Attachment;