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