import React from "react"; import { FilterType } from "../../filter/types"; import { ColumnSettingType, DataSourceGroupType, ExportImportType, GallerySettingType, GridViewType, SortType } from "../types"; import "./index.less"; declare type ActionsProps = { filter: FilterType; tableId?: string; columnSetting?: ColumnSettingType; dataSourceGroup?: DataSourceGroupType; sort: SortType; localPagination?: boolean; buttons: any[]; view: GridViewType; gallery: GallerySettingType; exportImport?: ExportImportType; }; declare const Actions: ({ filter, sort, columnSetting, dataSourceGroup, tableId, localPagination, buttons, view, gallery, exportImport, }: ActionsProps) => React.JSX.Element | null; export default Actions;