import { type ComputedRef } from 'vue';
import { type EditorProps } from '../typings';
export declare function useEditorToolbar(options: {
    mergedProps: ComputedRef<EditorProps>;
}): {
    toolbarConfig: ComputedRef<{
        toolbar: string;
        toolbarOptions: {
            /** 工具栏是否固定 */
            toolbar_sticky: boolean;
            /** 按钮过多的显示模式 */
            toolbar_mode: any;
        };
    }>;
};
