@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) • 743 B
TypeScript
import { type VariantProps } from 'class-variance-authority';
import React, { type PropsWithChildren } from 'react';
export declare const boxVariants: (props?: ({
variant?: "container" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export type BoxProps = PropsWithChildren & React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof boxVariants>;
export declare const Box: React.ForwardRefExoticComponent<{
children?: React.ReactNode | undefined;
} & React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
variant?: "container" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLDivElement>>;