@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
13 lines (12 loc) • 559 B
TypeScript
import type React from 'react';
import type { PropsWithChildren } from 'react';
export type DeploymentFlowLayoutProps = PropsWithChildren & {
className?: string;
};
export declare const DeploymentFlowLayout: React.FC<DeploymentFlowLayoutProps>;
export type DeploymentFlowHeaderProps = PropsWithChildren;
export declare const DeploymentFlowHeader: React.FC<DeploymentFlowHeaderProps>;
export type DeploymentFlowContentProps = PropsWithChildren<{
className?: string;
}>;
export declare const DeploymentFlowContent: React.FC<DeploymentFlowContentProps>;