import React from 'react'; import { ButtonProps } from '@nextui-org/react'; import { BUCKET_VALUE } from '../../../../app/Types/firebase'; export interface FileUploadProps { url: string; path: string; id: string; dbFilePath: string; filename: string; sizeKB: any; } declare function RawButtonFileUpload(data: { noOptions?: any; overlayPosition?: 'top' | 'bottom' | 'left' | 'right'; isDisabled?: any; maxSizeMB?: any; path?: any; default?: any; callback?: (linkObject: FileUploadProps) => void; consumeLT?: any; accept?: any; id?: any; type?: any; className?: any; placeholder?: string; children?: any; buttonProps?: ButtonProps; showEditIcon?: boolean; bucket?: BUCKET_VALUE; withLoading?: boolean; }): React.JSX.Element; export default RawButtonFileUpload;