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