import { Address } from '@terradharitri/sdk-core'; export declare class GovernanceEventTopics { readonly eventName: string; readonly voter: Address; readonly proposalId: number; readonly nrVotes: string; readonly quorumUsed: string; constructor(rawTopics: string[]); toJSON(): { eventName: string; voter: string; proposalId: number; nrVotes: string; quorumUsed: string; }; }