///
import type { CheckboxValueType } from 'antd/es/checkbox/Group';
import type { DColumnType } from '../DTable';
export interface ToolbarProps {
className?: string;
fullScreen?: boolean;
conditionVisible?: boolean;
columns?: DColumnType[];
onActions?: {
setFullScreen?: (_fullScreen: boolean) => void;
handleRefresh?: () => void;
onColumnSettingChanged?: (_checkedList: CheckboxValueType[], _sortedColumns?: DColumnType[]) => void;
setConditionVisible?: (_visible: boolean) => void;
};
}
declare function Toolbar({ className, fullScreen, conditionVisible, columns, onActions }: ToolbarProps): import("react/jsx-runtime").JSX.Element;
declare const _default: import("react").MemoExoticComponent;
export default _default;