UNPKG

@lobehub/ui

Version:

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

13 lines (12 loc) 393 B
/// <reference types="react" /> import { type ActionIconGroupProps } from "../../ActionIconGroup"; export interface ActionsBarProps extends ActionIconGroupProps { text?: { copy?: string; delete?: string; edit?: string; regenerate?: string; }; } declare const ActionsBar: import("react").NamedExoticComponent<ActionsBarProps>; export default ActionsBar;