/** * RoadmapVoteButton — small thumbs-up / thumbs-down vote button used by * `RoadmapCard`'s `default` variant. Pure presentation; click handler * comes from the parent (typically a `useRoadmapVoting` hook). */ import React from 'react'; 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): React.JSX.Element; //# sourceMappingURL=roadmap-vote-button.d.ts.map