@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
12 lines (11 loc) • 352 B
TypeScript
import type React from 'react';
interface FileUploadProps {
onFileUpload: (fileContent: string) => void;
fileType: 'json' | 'env';
className?: string;
label?: string;
ctaLabel?: string;
onFileValidation?: (result: boolean, msg?: string) => void;
}
declare const FileUpload: React.FC<FileUploadProps>;
export default FileUpload;