export interface RoadmapVoteButtonProps { voteType: 'up' | 'down'; count: number; isActive: boolean; onClick: () => void; disabled?: boolean; showCount?: boolean; color?: string; className?: string; } export declare function RoadmapVoteButton({ voteType, count, isActive, onClick, disabled, showCount, color, className, }: RoadmapVoteButtonProps): import("react").JSX.Element; //# sourceMappingURL=roadmap-vote-button.d.ts.map