@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 369 B
TypeScript
import { Ref } from 'react';
import { ChatItemProps } from "..";
export interface ActionsProps {
actions: ChatItemProps['actions'];
editing?: boolean;
placement?: ChatItemProps['placement'];
ref?: Ref<HTMLDivElement>;
type?: ChatItemProps['type'];
}
declare const Actions: import("react").NamedExoticComponent<ActionsProps>;
export default Actions;