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