@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) • 384 B
TypeScript
import type { Project } from '@base/api';
export type ProjectDropdownProps = {
className?: string;
value?: string;
options: Project[];
isLoading?: boolean;
onOptionClick: (option: Project) => void;
};
export declare const ProjectDropdown: ({ className, value, options, isLoading, onOptionClick, }: ProjectDropdownProps) => import("react/jsx-runtime").JSX.Element;