import { CredentialHex } from "./Address"; import { AfterBlockPagination, UntilBlockPagination } from "./common"; export declare type GovernanceVotesForCredentialRequest = { credential: CredentialHex; limit?: number | undefined; } & UntilBlockPagination & AfterBlockPagination; export declare type GovernanceVotesForCredentialResponse = { votes: { govActionId: string; vote: string; }[]; txId: string; block: string; }[]; export declare type GovernanceCredentialDidVoteRequest = { credential: CredentialHex; actionIds: string[]; } & UntilBlockPagination; export declare type GovernanceCredentialDidVoteResponse = { actionId: string; txId: string; payload: string; }[];