import React from 'react'; import { FileDraggerProps } from './FileUploaderFileDragger'; export type FileUploaderProps = { extra?: React.ReactNode; dragAreaConfig?: Omit; }; export default function FileUploaderMain({ extra, dragAreaConfig }: FileUploaderProps): import("react/jsx-runtime").JSX.Element;