import { FC } from 'react';
import { ComponentBaseProps } from '../../core';
import { FileInfo } from './types';
interface FileListProps extends ComponentBaseProps {
    files: FileInfo[];
    onCancelLoad?(file: FileInfo): void;
    onRemove?(file: FileInfo): void;
    readOnly?: boolean;
}
export declare const FileList: FC<FileListProps>;
export {};
