UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

11 lines (10 loc) 341 B
/// <reference types="react" /> import { ChatItemProps } from ".."; export interface ActionsProps { actions: ChatItemProps['actions']; editing?: boolean; placement?: ChatItemProps['placement']; type?: ChatItemProps['type']; } declare const Actions: import("react").NamedExoticComponent<ActionsProps>; export default Actions;