/**
* @since 2.0.0
*/
import { Effect } from "effect";
import * as CML from "@anastasia-labs/cardano-multiplatform-lib-nodejs";
/**
* Type alias for the CML Bip32PublicKey class
*
* @since 2.0.0
* @category Types
*/
export type Bip32PublicKey = CML.Bip32PublicKey;
declare const Bip32PublicKeyError_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: "Bip32PublicKeyError";
} & Readonly;
/**
* Error class for Bip32PublicKey operations
*
* This error is thrown when operations on Bip32PublicKey instances fail.
*
* @since 2.0.0
* @category Errors
*/
export declare class Bip32PublicKeyError extends Bip32PublicKeyError_base<{
message?: string;
}> {
}
/**
* Method free of Bip32PublicKey
*
* @since 2.0.0
* @category Methods
*/
export declare const free: (instance: CML.Bip32PublicKey) => Effect.Effect;
/**
* Unsafely calls instance.free without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const freeUnsafe: (instance: CML.Bip32PublicKey) => void;
/**
* Method derive of Bip32PublicKey
*
* @since 2.0.0
* @category Methods
*/
export declare const derive: (instance: CML.Bip32PublicKey, index: number) => Effect.Effect;
/**
* Unsafely calls instance.derive without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const deriveUnsafe: (instance: CML.Bip32PublicKey, index: number) => CML.Bip32PublicKey;
/**
* Method toRawKey of Bip32PublicKey
*
* @since 2.0.0
* @category Methods
*/
export declare const toRawKey: (instance: CML.Bip32PublicKey) => Effect.Effect;
/**
* Unsafely calls instance.toRawKey without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const toRawKeyUnsafe: (instance: CML.Bip32PublicKey) => CML.PublicKey;
/**
* Static method fromRawBytes of Bip32PublicKey
*
* @since 2.0.0
* @category Constructors
*/
export declare const fromRawBytes: (bytes: Uint8Array) => Effect.Effect;
/**
* Unsafely calls Bip32PublicKey.fromRawBytes without Effect wrapper
*
* @since 2.0.0
* @category ConstructorsUnsafe
*/
export declare const fromRawBytesUnsafe: (bytes: Uint8Array) => CML.Bip32PublicKey;
/**
* Method toRawBytes of Bip32PublicKey
*
* @since 2.0.0
* @category Methods
*/
export declare const toRawBytes: (instance: CML.Bip32PublicKey) => Effect.Effect;
/**
* Unsafely calls instance.toRawBytes without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const toRawBytesUnsafe: (instance: CML.Bip32PublicKey) => Uint8Array;
/**
* Static method fromBech32 of Bip32PublicKey
*
* @since 2.0.0
* @category Constructors
*/
export declare const fromBech32: (bech32Str: string) => Effect.Effect;
/**
* Unsafely calls Bip32PublicKey.fromBech32 without Effect wrapper
*
* @since 2.0.0
* @category ConstructorsUnsafe
*/
export declare const fromBech32Unsafe: (bech32Str: string) => CML.Bip32PublicKey;
/**
* Method toBech32 of Bip32PublicKey
*
* @since 2.0.0
* @category Methods
*/
export declare const toBech32: (instance: CML.Bip32PublicKey) => Effect.Effect;
/**
* Unsafely calls instance.toBech32 without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const toBech32Unsafe: (instance: CML.Bip32PublicKey) => string;
/**
* Method chaincode of Bip32PublicKey
*
* @since 2.0.0
* @category Methods
*/
export declare const chaincode: (instance: CML.Bip32PublicKey) => Effect.Effect;
/**
* Unsafely calls instance.chaincode without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const chaincodeUnsafe: (instance: CML.Bip32PublicKey) => Uint8Array;
export {};
//# sourceMappingURL=Bip32PublicKey.d.ts.map