import { type StyleValue } from "vue";
import type { TableDefaultToolbar } from "../typing";
import type { TableToolBarType } from "../components/types";
export declare const useToolBar: (props: TableToolBarType) => {
    t: any;
    showToolbars: import("vue").ComputedRef<TableDefaultToolbar[]>;
    toolbarStyle: (toolbarName: TableDefaultToolbar) => StyleValue;
    exportData: () => void;
    print: () => void;
};
