@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
10 lines (9 loc) • 342 B
TypeScript
export interface FileWithPreview extends File {
preview?: string;
}
interface AttachmentsListProps {
files: FileWithPreview[];
onRemoveFile: (index: number) => void;
}
declare const AttachmentsList: ({ files, onRemoveFile }: AttachmentsListProps) => import("react/jsx-runtime").JSX.Element | null;
export default AttachmentsList;