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