/// <reference types="react" />
import type { Toolbar } from './toolbar';
import { ToolbarFactory } from './toolbar';
export interface ToolbarRenderProps {
    /**
     * 参数
     * @description       toolbar 传递的参数
     */
    data: any | any[];
    /**
     * 工厂函数
     * @description       获取 toolbar 实例的工厂函数，用于自定义
     */
    factory?: ToolbarFactory;
    /**
     * toolbar 实例
     * @description       可以传递已经存在的 toolbar 实例
     */
    toolbar?: Toolbar;
    /**
     * tooltip 设置
     * @description       设置 tooltip 的属性
     */
    tooltip?: {
        placement: string;
    };
}
export declare const ToolbarRender: import("react").NamedExoticComponent<ToolbarRenderProps>;
//# sourceMappingURL=toolbar-render.d.ts.map