/**
 * URL Upload Component - Simple version for testing
 */
import { FileUploadConfig, UploadOptions, UploadResult } from '../../types';
interface UrlUploadProps {
    config: FileUploadConfig;
    options?: UploadOptions;
    onFileSelect: (fileUrl: string, fileData: UploadResult) => void;
}
export declare function UrlUpload({ config, options, onFileSelect }: UrlUploadProps): import("react/jsx-runtime").JSX.Element;
export default UrlUpload;
//# sourceMappingURL=UrlUpload.d.ts.map