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