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