import { default as React } from 'react';
import { ForceFileType } from '../Files';
import { FileDropChildren } from './index';
export interface MessageProps {
    file: FileDropChildren['file'];
    fileName?: string;
    forceFileType?: ForceFileType;
}
export declare const FilePreview: React.FC<FileDropChildren['wordings'] & MessageProps>;
