@difizen/ai-flow
Version:
Scalable, out-of-the-box, agent-oriented flow
13 lines (12 loc) • 327 B
TypeScript
export interface PopItemProps {
title?: string;
extra?: string;
description?: string;
isDivider?: boolean;
onClick?: () => void;
}
export declare const PopItems: (props: {
children: React.ReactNode;
items: PopItemProps[];
footer?: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element;