UNPKG

@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) 651 B
import type { ComponentProps, PropsWithChildren } from 'react'; export type TextareaProps = ComponentProps<'textarea'>; export declare const Textarea: ({ className, ...props }: TextareaProps) => import("react/jsx-runtime").JSX.Element; export type TextareaRootProps = PropsWithChildren<{ className?: string; }>; export declare const TextareaRoot: ({ className, children }: TextareaRootProps) => import("react/jsx-runtime").JSX.Element; export type TextareaFooterProps = PropsWithChildren<{ className?: string; }>; export declare const TextareaFooter: ({ className, children, }: TextareaFooterProps) => import("react/jsx-runtime").JSX.Element;