import React from 'react';
import { ArrayTranslations, ControlElement, JsonSchema } from '@jsonforms/core';
export interface MaterialTableToolbarProps {
    errors: string;
    label: string;
    path: string;
    uischema: ControlElement;
    schema: JsonSchema;
    rootSchema: JsonSchema;
    enabled: boolean;
    addItem(path: string, value: any): () => void;
    translations: ArrayTranslations;
}
declare const TableToolbar: React.MemoExoticComponent<({ errors, label, path, addItem, schema, enabled, translations, }: MaterialTableToolbarProps) => JSX.Element>;
export default TableToolbar;
