import React from 'react';
import { FilePanelProps } from './FilePanel.container';
import { TranslateFuncType } from '../util/models';
interface FilePanelComponentProps extends FilePanelProps {
    t: TranslateFuncType;
}
declare const FilePanelComponent: React.FC<FilePanelComponentProps>;
export default FilePanelComponent;
