interface IProps { icon: '-' | '+'; disable?: boolean; onMouseDown?: () => void; onMouseUp?: () => void; onClick?: () => void; } declare const RatioButton: (props: IProps) => JSX.Element; export default RatioButton;