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