export interface FileWithPreview extends File {
    preview?: string;
}
interface AttachmentsListProps {
    files: FileWithPreview[];
    onRemoveFile: (index: number) => void;
}
declare const AttachmentsList: ({ files, onRemoveFile }: AttachmentsListProps) => import("react/jsx-runtime").JSX.Element | null;
export default AttachmentsList;
