import React from 'react'; import './index.css'; export interface ViewEditorProps { onClick: (event: React.MouseEvent) => void; disabled?: boolean; title?: string; children: React.FC<{ ref: React.MutableRefObject; }>; } declare const _default: ({ disabled, title, children, onClick, }: ViewEditorProps) => JSX.Element; export default _default;