import { SilkeFileValue, SilkeImageValue } from './utils'; interface AttachmentChipProps { attachment: SilkeImageValue | SilkeFileValue; disabled?: boolean; onRemove?: () => void; } export declare function AttachmentChip({ attachment, disabled, onRemove }: AttachmentChipProps): import("react/jsx-runtime").JSX.Element; export {};