/** * Hook to access quadratic voting state and actions. * * Must be used within a QuadraticVoteProvider component. * Provides access to questions, credits, voting functions, and reset functionality. * * @returns Voting state and actions * @throws {Error} If used outside of QuadraticVoteProvider * * @example * ```tsx * function VotingUI() { * const { questions, vote, availableCredits, reset } = useQuadraticVote() * * return ( *
*

Credits left: {availableCredits}

* {questions.map(q => ( * * ))} * *
* ) * } * ``` */ declare const useQuadraticVote: () => import('./QuadraticVoteProvider').QuadraticVoteType; export default useQuadraticVote; //# sourceMappingURL=useQuadraticVote.d.ts.map