import { FC } from 'react'; interface Props { clearSelection: () => void; hasSelectedItem: boolean; onClick: () => void; } declare const ControllerButton: FC; export default ControllerButton;