import React from 'react'; import { ClickableProps } from '../Clickable'; import './SelectableButton.scss'; export type SelectableButtonProps = ClickableProps & { hover?: boolean; selected?: boolean; unavailable?: boolean; }; export declare const SelectableButton: React.FC;