import { Proposal, ProposalVariant, ProposalVote } from '../../types';
import { web3 } from '@coral-xyz/anchor';
export declare const getGovernanceAccounts: (programId: web3.PublicKey, connection: web3.Connection) => Promise<{
    proposals: Proposal[];
    votes: ProposalVote[];
    variants: ProposalVariant[];
}>;
