import { default as React } from 'react'; import { ThemeTypes } from '@viasat/beam-shared/utils/constants'; export interface FileUploadDropzoneProps extends React.ComponentPropsWithRef<'input'> { /** * Specify text for the Dropzone */ children?: React.ReactNode; /** * Specify if FileUpload is in error state */ error?: boolean; /** * Specify the theme of the FileUpload. By default it inherits the theme from the parent */ theme?: ThemeTypes; } export declare const FileUploadDropzoneComponent: React.ForwardRefExoticComponent & React.RefAttributes>;