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