/** * @since 2.0.0 */ import { Effect } from "effect"; import * as CML from "@anastasia-labs/cardano-multiplatform-lib-nodejs"; /** * Type alias for the CML StakeRegistration class * * @since 2.0.0 * @category Types */ export type StakeRegistration = CML.StakeRegistration; declare const StakeRegistrationError_base: new = {}>(args: import("effect/Types").Equals extends true ? void : { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }) => import("effect/Cause").YieldableError & { readonly _tag: "StakeRegistrationError"; } & Readonly; /** * Error class for StakeRegistration operations * * This error is thrown when operations on StakeRegistration instances fail. * * @since 2.0.0 * @category Errors */ export declare class StakeRegistrationError extends StakeRegistrationError_base<{ message?: string; }> { } /** * Method free of StakeRegistration * * @since 2.0.0 * @category Methods */ export declare const free: (instance: CML.StakeRegistration) => Effect.Effect; /** * Unsafely calls instance.free without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const freeUnsafe: (instance: CML.StakeRegistration) => void; /** * Method toCborBytes of StakeRegistration * * @since 2.0.0 * @category Methods */ export declare const toCborBytes: (instance: CML.StakeRegistration) => Effect.Effect; /** * Unsafely calls instance.toCborBytes without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCborBytesUnsafe: (instance: CML.StakeRegistration) => Uint8Array; /** * Method toCanonicalCborBytes of StakeRegistration * * @since 2.0.0 * @category Methods */ export declare const toCanonicalCborBytes: (instance: CML.StakeRegistration) => Effect.Effect; /** * Unsafely calls instance.toCanonicalCborBytes without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCanonicalCborBytesUnsafe: (instance: CML.StakeRegistration) => Uint8Array; /** * Static method fromCborBytes of StakeRegistration * * @since 2.0.0 * @category Constructors */ export declare const fromCborBytes: (cborBytes: Uint8Array) => Effect.Effect; /** * Unsafely calls StakeRegistration.fromCborBytes without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const fromCborBytesUnsafe: (cborBytes: Uint8Array) => CML.StakeRegistration; /** * Method toCborHex of StakeRegistration * * @since 2.0.0 * @category Methods */ export declare const toCborHex: (instance: CML.StakeRegistration) => Effect.Effect; /** * Unsafely calls instance.toCborHex without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCborHexUnsafe: (instance: CML.StakeRegistration) => string; /** * Method toCanonicalCborHex of StakeRegistration * * @since 2.0.0 * @category Methods */ export declare const toCanonicalCborHex: (instance: CML.StakeRegistration) => Effect.Effect; /** * Unsafely calls instance.toCanonicalCborHex without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCanonicalCborHexUnsafe: (instance: CML.StakeRegistration) => string; /** * Static method fromCborHex of StakeRegistration * * @since 2.0.0 * @category Constructors */ export declare const fromCborHex: (cborBytes: string) => Effect.Effect; /** * Unsafely calls StakeRegistration.fromCborHex without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const fromCborHexUnsafe: (cborBytes: string) => CML.StakeRegistration; /** * Method toJson of StakeRegistration * * @since 2.0.0 * @category Methods */ export declare const toJson: (instance: CML.StakeRegistration) => Effect.Effect; /** * Unsafely calls instance.toJson without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toJsonUnsafe: (instance: CML.StakeRegistration) => string; /** * Method toJsValue of StakeRegistration * * @since 2.0.0 * @category Methods */ export declare const toJsValue: (instance: CML.StakeRegistration) => Effect.Effect; /** * Unsafely calls instance.toJsValue without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toJsValueUnsafe: (instance: CML.StakeRegistration) => any; /** * Static method fromJson of StakeRegistration * * @since 2.0.0 * @category Constructors */ export declare const fromJson: (json: string) => Effect.Effect; /** * Unsafely calls StakeRegistration.fromJson without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const fromJsonUnsafe: (json: string) => CML.StakeRegistration; /** * Method stakeCredential of StakeRegistration * * @since 2.0.0 * @category Methods */ export declare const stakeCredential: (instance: CML.StakeRegistration) => Effect.Effect; /** * Unsafely calls instance.stakeCredential without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const stakeCredentialUnsafe: (instance: CML.StakeRegistration) => CML.Credential; /** * Static method _new of StakeRegistration * * @since 2.0.0 * @category Constructors */ export declare const _new: (stakeCredential: CML.Credential) => Effect.Effect; /** * Unsafely calls StakeRegistration._new without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const _newUnsafe: (stakeCredential: CML.Credential) => CML.StakeRegistration; export {}; //# sourceMappingURL=StakeRegistration.d.ts.map