interface AttachmentChipProps { name: string; size?: string; type?: string; removable?: boolean; class?: string; onremove?: () => void; onclick?: () => void; } declare const AttachmentChip: import("svelte").Component; type AttachmentChip = ReturnType; export default AttachmentChip;