UNPKG

@lobehub/ui

Version:

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

11 lines (10 loc) 370 B
import type { ToolbarRenderInfoType } from 'rc-image/lib/Preview'; import { type ReactNode } from 'react'; export interface ToolbarProps { children?: ReactNode; info: Omit<ToolbarRenderInfoType, 'current' | 'total'>; maxScale: number; minScale: number; } declare const Toolbar: import("react").NamedExoticComponent<ToolbarProps>; export default Toolbar;