import React from 'react'; import { Tool } from '../../types'; interface Props { activeToolName: string; isVisible: boolean; onSwitchTool: () => void; tools: Tool[]; } export default function ToolMenu(props: Props): React.JSX.Element; export {}; //# sourceMappingURL=ToolMenu.d.ts.map