UNPKG

@lobehub/ui

Version:

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

18 lines (17 loc) 473 B
import type { ActionIconGroupItemType } from "../../../ActionIconGroup"; interface ChatListActionsBar { copy: ActionIconGroupItemType; del: ActionIconGroupItemType; divider: { type: 'divider'; }; edit: ActionIconGroupItemType; regenerate: ActionIconGroupItemType; } export declare const useChatListActionsBar: (text?: { copy?: string; delete?: string; edit?: string; regenerate?: string; }) => ChatListActionsBar; export {};