/**
* @since 2.0.0
*/
import { Effect } from "effect";
import * as CML from "@anastasia-labs/cardano-multiplatform-lib-nodejs";
/**
* Type alias for the CML RegCert class
*
* @since 2.0.0
* @category Types
*/
export type RegCert = CML.RegCert;
declare const RegCertError_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: "RegCertError";
} & Readonly;
/**
* Error class for RegCert operations
*
* This error is thrown when operations on RegCert instances fail.
*
* @since 2.0.0
* @category Errors
*/
export declare class RegCertError extends RegCertError_base<{
message?: string;
}> {
}
/**
* Method free of RegCert
*
* @since 2.0.0
* @category Methods
*/
export declare const free: (instance: CML.RegCert) => Effect.Effect;
/**
* Unsafely calls instance.free without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const freeUnsafe: (instance: CML.RegCert) => void;
/**
* Method toCborBytes of RegCert
*
* @since 2.0.0
* @category Methods
*/
export declare const toCborBytes: (instance: CML.RegCert) => Effect.Effect;
/**
* Unsafely calls instance.toCborBytes without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const toCborBytesUnsafe: (instance: CML.RegCert) => Uint8Array;
/**
* Method toCanonicalCborBytes of RegCert
*
* @since 2.0.0
* @category Methods
*/
export declare const toCanonicalCborBytes: (instance: CML.RegCert) => Effect.Effect;
/**
* Unsafely calls instance.toCanonicalCborBytes without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const toCanonicalCborBytesUnsafe: (instance: CML.RegCert) => Uint8Array;
/**
* Static method fromCborBytes of RegCert
*
* @since 2.0.0
* @category Constructors
*/
export declare const fromCborBytes: (cborBytes: Uint8Array) => Effect.Effect;
/**
* Unsafely calls RegCert.fromCborBytes without Effect wrapper
*
* @since 2.0.0
* @category ConstructorsUnsafe
*/
export declare const fromCborBytesUnsafe: (cborBytes: Uint8Array) => CML.RegCert;
/**
* Method toCborHex of RegCert
*
* @since 2.0.0
* @category Methods
*/
export declare const toCborHex: (instance: CML.RegCert) => Effect.Effect;
/**
* Unsafely calls instance.toCborHex without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const toCborHexUnsafe: (instance: CML.RegCert) => string;
/**
* Method toCanonicalCborHex of RegCert
*
* @since 2.0.0
* @category Methods
*/
export declare const toCanonicalCborHex: (instance: CML.RegCert) => Effect.Effect;
/**
* Unsafely calls instance.toCanonicalCborHex without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const toCanonicalCborHexUnsafe: (instance: CML.RegCert) => string;
/**
* Static method fromCborHex of RegCert
*
* @since 2.0.0
* @category Constructors
*/
export declare const fromCborHex: (cborBytes: string) => Effect.Effect;
/**
* Unsafely calls RegCert.fromCborHex without Effect wrapper
*
* @since 2.0.0
* @category ConstructorsUnsafe
*/
export declare const fromCborHexUnsafe: (cborBytes: string) => CML.RegCert;
/**
* Method toJson of RegCert
*
* @since 2.0.0
* @category Methods
*/
export declare const toJson: (instance: CML.RegCert) => Effect.Effect;
/**
* Unsafely calls instance.toJson without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const toJsonUnsafe: (instance: CML.RegCert) => string;
/**
* Method toJsValue of RegCert
*
* @since 2.0.0
* @category Methods
*/
export declare const toJsValue: (instance: CML.RegCert) => Effect.Effect;
/**
* Unsafely calls instance.toJsValue without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const toJsValueUnsafe: (instance: CML.RegCert) => any;
/**
* Static method fromJson of RegCert
*
* @since 2.0.0
* @category Constructors
*/
export declare const fromJson: (json: string) => Effect.Effect;
/**
* Unsafely calls RegCert.fromJson without Effect wrapper
*
* @since 2.0.0
* @category ConstructorsUnsafe
*/
export declare const fromJsonUnsafe: (json: string) => CML.RegCert;
/**
* Method stakeCredential of RegCert
*
* @since 2.0.0
* @category Methods
*/
export declare const stakeCredential: (instance: CML.RegCert) => Effect.Effect;
/**
* Unsafely calls instance.stakeCredential without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const stakeCredentialUnsafe: (instance: CML.RegCert) => CML.Credential;
/**
* Method deposit of RegCert
*
* @since 2.0.0
* @category Methods
*/
export declare const deposit: (instance: CML.RegCert) => Effect.Effect;
/**
* Unsafely calls instance.deposit without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const depositUnsafe: (instance: CML.RegCert) => bigint;
/**
* Static method _new of RegCert
*
* @since 2.0.0
* @category Constructors
*/
export declare const _new: (stakeCredential: CML.Credential, deposit: bigint) => Effect.Effect;
/**
* Unsafely calls RegCert._new without Effect wrapper
*
* @since 2.0.0
* @category ConstructorsUnsafe
*/
export declare const _newUnsafe: (stakeCredential: CML.Credential, deposit: bigint) => CML.RegCert;
export {};
//# sourceMappingURL=RegCert.d.ts.map