import { default as React } from 'react'; import { JsonEditorSize, JsonValue } from './json-editor-types'; interface ToolbarProps { value: JsonValue; allowSearch: boolean; allowCopy: boolean; size: JsonEditorSize; onExpandAll: () => void; onCollapseAll: () => void; searchText: string; onSearchChange: (text: string) => void; } declare const Toolbar: React.FC; export default Toolbar;