import * as React from 'react'; import type { Tool } from '../../types/tools'; interface Props { tool: Tool; onClick?: () => void; } export default function ToolbarButton({ tool, onClick }: Props): React.JSX.Element; export {}; //# sourceMappingURL=ToolbarButton.d.ts.map