@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
27 lines (26 loc) • 1.29 kB
TypeScript
import { type PropsWithChildren } from 'react';
export type LayoutProps = PropsWithChildren<{
className?: string;
}>;
export declare const Layout: ({ children, className }: LayoutProps) => import("react/jsx-runtime").JSX.Element;
export type LayoutHeaderProps = PropsWithChildren<{
className?: string;
}>;
export declare const LayoutHeader: ({ children, className }: LayoutHeaderProps) => import("react/jsx-runtime").JSX.Element;
export type LayoutContentProps = PropsWithChildren<{
className?: string;
}>;
export declare const LayoutContent: ({ children, className }: LayoutContentProps) => import("react/jsx-runtime").JSX.Element;
export type LayoutAsideProps = PropsWithChildren<{
className?: string;
isOpen?: boolean;
}>;
export declare const LayoutAside: ({ children, className, isOpen, }: LayoutAsideProps) => import("react/jsx-runtime").JSX.Element;
export type LayoutMainProps = PropsWithChildren<{
className?: string;
}>;
export declare const LayoutMain: ({ children, className }: LayoutMainProps) => import("react/jsx-runtime").JSX.Element;
export type LayoutMainContentProps = PropsWithChildren<{
className?: string;
}>;
export declare const LayoutMainContent: ({ children, className, }: LayoutMainContentProps) => import("react/jsx-runtime").JSX.Element;