import type { FC, KeyboardEvent, MouseEvent } from 'react'; import type { ForwardProps } from '@pega/cosmos-react-core'; import type { StyleType } from './Toolbar.types'; export interface ToolBarButtonProps { tooltip?: string; active?: boolean; styleType?: StyleType; disabled?: boolean; label?: string; onMouseDown?: (e: MouseEvent | KeyboardEvent) => void; } declare const ToolbarButton: FC; export default ToolbarButton; //# sourceMappingURL=ToolbarButton.d.ts.map