import React from 'react';
type Props = {
    name: string;
    type: string;
    error?: string;
};
declare const FileItem: React.FC<Props>;
export default FileItem;
