import BigNumber from 'bignumber.js'; import { Context, FungibleAsset, Namespace } from '../../../../../internal'; import { CorporateBallotWithDetails, CreateBallotParams, ProcedureMethod } from '../../../../../types'; /** * Handles all Asset Ballots related functionality */ export declare class Ballots extends Namespace { /** * Create a Ballot for an Asset */ create: ProcedureMethod; /** * @hidden */ constructor(parent: FungibleAsset, context: Context); /** * Retrieve a single Ballot associated to this Asset by its ID * * @throws if there is no Ballot assigned to the provided Corporate Action with the passed ID * @throws if the provided Corporate Action does not exist */ getOne(args: { id: BigNumber; }): Promise; /** * Retrieve all Ballots associated to this Asset */ get(): Promise; } //# sourceMappingURL=Ballots.d.ts.map