import { VoteOptions, VoteResponse } from '../types'; /** * React hook for handling votes with loading, error states * @param options - Optional configuration for the hook including collection name * @returns Object with vote function and state management */ export declare function useVote(options?: VoteOptions): { vote: (voteFor: string) => Promise; reset: () => void; loading: boolean; error: string | null; success: boolean; }; //# sourceMappingURL=useVote.d.ts.map