import type { IToolbarOptions } from '@antv/xflow-core'; import React from 'react'; import type { IToolbarProps } from './interface'; declare namespace NsToolbarModel { interface IState extends IToolbarOptions { customRender?: React.FC<{ config: IToolbarOptions; }>; } } export declare const useToolbarModel: (props: IToolbarProps) => { isModelReady: boolean; state: NsToolbarModel.IState; setState: import("@antv/xflow-core").NsModel.ISetValue; toolbarModel: import("@antv/xflow-core").RxModel; }; export {};