import React from 'react'; import { ToolbarConfig } from './config'; import type { IToolbarProps } from './interface'; export declare const CanvasToolbar: React.FC; interface IValueProxy { getValue: () => T; } export declare const createToolbarConfig: (addOptions: (config: ToolbarConfig, proxy: IValueProxy) => void) => (value?: T) => any; export { IToolbarProps };