import type { FC } from 'react';
import type { CustomFile, CustomFileOrRejection, Files } from '../hooks';
export type FileListProps = {
    files: Files;
    removeLabel: string;
    cancelLabel: string;
    onFileRemove: (file: CustomFileOrRejection) => void;
    onCancel: (file: CustomFileOrRejection) => void;
    fileUploadErrorLabel: string;
    fileUploadInProgressLabel?: string;
    isUploading?: boolean;
    progress?: number;
    title?: string;
    onFileNameClick?: (file: CustomFile) => void;
};
declare const FileList: FC<FileListProps>;
export default FileList;
//# sourceMappingURL=FileList.d.ts.map