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