import React from "react"; import { BaseProps } from "../../Factory/BaseType"; import { ActionProps, ToolbarOptions } from "./type"; export type GridToolBarProps = BaseProps & ActionProps & { toolBarOptions: ToolbarOptions; }; declare const GridToolBar: React.FC; export default GridToolBar;