/** * @since 2.0.0 */ import * as CML from "@anastasia-labs/cardano-multiplatform-lib-nodejs"; /** * Type alias for the CML AddressHeaderKind enum * * @since 2.0.0 * @category Types */ export type AddressHeaderKind = CML.AddressHeaderKind; /** * BasePaymentKeyStakeKey variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const BasePaymentKeyStakeKey = CML.AddressHeaderKind.BasePaymentKeyStakeKey; /** * BasePaymentScriptStakeKey variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const BasePaymentScriptStakeKey = CML.AddressHeaderKind.BasePaymentScriptStakeKey; /** * BasePaymentKeyStakeScript variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const BasePaymentKeyStakeScript = CML.AddressHeaderKind.BasePaymentKeyStakeScript; /** * BasePaymentScriptStakeScript variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const BasePaymentScriptStakeScript = CML.AddressHeaderKind.BasePaymentScriptStakeScript; /** * PointerKey variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const PointerKey = CML.AddressHeaderKind.PointerKey; /** * PointerScript variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const PointerScript = CML.AddressHeaderKind.PointerScript; /** * EnterpriseKey variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const EnterpriseKey = CML.AddressHeaderKind.EnterpriseKey; /** * EnterpriseScript variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const EnterpriseScript = CML.AddressHeaderKind.EnterpriseScript; /** * Byron variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const Byron = CML.AddressHeaderKind.Byron; /** * RewardKey variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const RewardKey = CML.AddressHeaderKind.RewardKey; /** * RewardScript variant of the AddressHeaderKind enum * * @since 2.0.0 * @category Variants */ export declare const RewardScript = CML.AddressHeaderKind.RewardScript; /** * Get all values of the AddressHeaderKind enum * * @since 2.0.0 * @category Utils */ export declare const values: () => Array; /** * Convert AddressHeaderKind enum value to string * * @since 2.0.0 * @category Utils */ export declare const toString: (value: CML.AddressHeaderKind) => string; /** * Convert string to AddressHeaderKind enum value * * @since 2.0.0 * @category Utils */ export declare const fromString: (str: string) => CML.AddressHeaderKind | undefined; //# sourceMappingURL=AddressHeaderKind.d.ts.map