import * as React from 'react'; import { ButtonProps } from '../button'; export interface VoteButtonProps extends Omit { threshold?: number; active?: boolean; } declare const VoteButton: React.FC; export default VoteButton;