/** * @since 2.0.0 */ import * as CML from "@anastasia-labs/cardano-multiplatform-lib-nodejs"; /** * Type alias for the CML VoterKind enum * * @since 2.0.0 * @category Types */ export type VoterKind = CML.VoterKind; /** * ConstitutionalCommitteeHotKeyHash variant of the VoterKind enum * * @since 2.0.0 * @category Variants */ export declare const ConstitutionalCommitteeHotKeyHash = CML.VoterKind.ConstitutionalCommitteeHotKeyHash; /** * ConstitutionalCommitteeHotScriptHash variant of the VoterKind enum * * @since 2.0.0 * @category Variants */ export declare const ConstitutionalCommitteeHotScriptHash = CML.VoterKind.ConstitutionalCommitteeHotScriptHash; /** * DRepKeyHash variant of the VoterKind enum * * @since 2.0.0 * @category Variants */ export declare const DRepKeyHash = CML.VoterKind.DRepKeyHash; /** * DRepScriptHash variant of the VoterKind enum * * @since 2.0.0 * @category Variants */ export declare const DRepScriptHash = CML.VoterKind.DRepScriptHash; /** * StakingPoolKeyHash variant of the VoterKind enum * * @since 2.0.0 * @category Variants */ export declare const StakingPoolKeyHash = CML.VoterKind.StakingPoolKeyHash; /** * Get all values of the VoterKind enum * * @since 2.0.0 * @category Utils */ export declare const values: () => Array; /** * Convert VoterKind enum value to string * * @since 2.0.0 * @category Utils */ export declare const toString: (value: CML.VoterKind) => string; /** * Convert string to VoterKind enum value * * @since 2.0.0 * @category Utils */ export declare const fromString: (str: string) => CML.VoterKind | undefined; //# sourceMappingURL=VoterKind.d.ts.map