@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
9 lines (8 loc) • 368 B
TypeScript
import type { ElizaFormV1 } from '@base/hooks/useElizaForm';
import type { FieldErrors } from 'react-hook-form';
export type ErrorModalProps = {
isOpen: boolean;
errors?: FieldErrors<ElizaFormV1>;
onCloseModal: () => void;
};
export declare const ErrorModal: ({ isOpen, errors, onCloseModal, }: ErrorModalProps) => import("react/jsx-runtime").JSX.Element;