/* tslint:disable */
/* eslint-disable */

/**
 * Public address of an Aleo account
 */
export class Address {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Get an address from a series of bits represented as a boolean array.
     *
     * @param {Array} bits A left endian boolean array representing the bits of the address.
     *
     * @returns {Address} The address object.
     */
    static fromBitsLe(bits: Array<any>): Address;
    /**
     * Get an address from a series of bytes.
     *
     * @param {Uint8Array} bytes A left endian byte array representing the address.
     *
     * @returns {Address} The address object.
     */
    static fromBytesLe(bytes: Uint8Array): Address;
    /**
     * Get an address object from an array of fields.
     *
     * @param {Array} fields An array of fields.
     *
     * @returns {Plaintext} The address object.
     */
    static fromFields(fields: Array<any>): Address;
    /**
     * Get an address object from a group.
     *
     * @param {Group} group The group object.
     *
     * @returns {Address} The address object.
     */
    static fromGroup(group: Group): Address;
    /**
     * Derive an Aleo address from a compute key.
     *
     * @param {ComputeKey} compute_key The compute key to derive the address from
     */
    static from_compute_key(compute_key: ComputeKey): Address;
    /**
     * Derive an Aleo address from a private key
     *
     * @param {PrivateKey} private_key The private key to derive the address from
     * @returns {Address} Address corresponding to the private key
     */
    static from_private_key(private_key: PrivateKey): Address;
    /**
     * Create an aleo address object from a string representation of an address
     *
     * @param {string} address String representation of an addressm
     * @returns {Address} Address
     */
    static from_string(address: string): Address;
    /**
     * Derive an Aleo address from a view key
     *
     * @param {ViewKey} view_key The view key to derive the address from
     * @returns {Address} Address corresponding to the view key
     */
    static from_view_key(view_key: ViewKey): Address;
    /**
     * Get the left endian boolean array representation of the bits of the address.
     */
    toBitsLe(): Array<any>;
    /**
     * Get the left endian byte array representation of the address.
     */
    toBytesLe(): Uint8Array;
    /**
     * Get the field array representation of the address.
     */
    toFields(): Array<any>;
    /**
     * Get the group representation of the address object.
     */
    toGroup(): Group;
    /**
     * Get the plaintext representation of the address.
     */
    toPlaintext(): Plaintext;
    /**
     * Get a string representation of an Aleo address object
     *
     * @param {Address} Address
     * @returns {string} String representation of the address
     */
    to_string(): string;
    /**
     * Verify a signature for a message signed by the address
     *
     * @param {Uint8Array} Byte array representing a message signed by the address
     * @returns {boolean} Boolean representing whether or not the signature is valid
     */
    verify(message: Uint8Array, signature: Signature): boolean;
}

/**
 * Authorization object containing the authorization for a transaction.
 */
export class Authorization {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Check if an Authorization object is the same as another.
     *
     * @param {Authorization} other The Authorization object to determine equality with.
     */
    equals(other: Authorization): boolean;
    /**
     * Creates an authorization object from a left-endian byte representation of an Authorization.
     *
     * @param {Uint8Array} bytes Left-endian bytes representing the Authorization.
     */
    static fromBytesLe(bytes: Uint8Array): Authorization;
    /**
     * Reconstructs an Authorization object from its string representation.
     *
     * @param {String} authorization The string representation of the Authorization.
     */
    static fromString(authorization: string): Authorization;
    /**
     * Get the function name.
     *
     * @returns {string} The function name.
     */
    functionName(): string;
    /**
     * Insert a transition into the Authorization.
     *
     * @param {Transition} transition The transition object to insert into the Authorization.
     */
    insertTransition(transition: Transition): void;
    /**
     * Return `true` if the Authorization is empty.
     */
    isEmpty(): boolean;
    /**
     * Returns `true` if the Authorization is for `credits.aleo/fee_private`.
     */
    isFeePrivate(): boolean;
    /**
     * Returns `true` if the Authorization is for `credits.aleo/fee_public`.
     */
    isFeePublic(): boolean;
    /**
     * Returns `true` if the Authorization is for `credits.aleo/split`.
     */
    isSplit(): boolean;
    /**
     * Returns the number of `Request`s in the Authorization.
     */
    len(): number;
    /**
     * Create a new authorization from a request object.
     *
     * @param {ExecutionRequest} request The ExecutionRequest to build the authorization from.
     */
    static new(request: ExecutionRequest): Authorization;
    /**
     * Returns a new and independent replica of the Authorization.
     */
    replicate(): Authorization;
    /**
     * Returns the left-endian byte representation of the Authorization.
     */
    toBytesLe(): Uint8Array;
    /**
     * Returns the execution ID for the Authorization.
     *
     * @returns {Field} The execution ID for the Authorization, call toString() after this result to get the string representation.
     */
    toExecutionId(): Field;
    /**
     * Returns the string representation of the Authorization.
     */
    toString(): string;
    /**
     * Get the transitions in an Authorization.
     *
     * @returns {Array<Transition>} Array of transition objects
     */
    transitions(): Array<any>;
}

export class BHP1024 {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns a BHP commitment with an input hasher of 1024 bits and randomizer.
     */
    commit(input: Array<any>, randomizer: Scalar): Field;
    /**
     * Returns a BHP commitment with an input hasher of 1024 bits and randomizer.
     */
    commitToGroup(input: Array<any>, randomizer: Scalar): Group;
    /**
     * Returns the BHP hash with an input hasher of 1024 bits.
     */
    hash(input: Array<any>): Field;
    /**
     * Returns a BHP hash with an input hasher of 1024 bits.
     */
    hashToGroup(input: Array<any>): Group;
    /**
     * Create a BHP hasher with an input size of 1024 bits.
     */
    constructor();
    /**
     * Create a BHP hasher with an input size of 1024 bits with a custom domain separator.
     */
    static setup(domain_separator: string): BHP1024;
}

export class BHP256 {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns a BHP commitment with an input hasher of 256 bits and randomizer.
     */
    commit(input: Array<any>, randomizer: Scalar): Field;
    /**
     * Returns a BHP commitment with an input hasher of 256 bits and randomizer.
     */
    commitToGroup(input: Array<any>, randomizer: Scalar): Group;
    /**
     * Returns the BHP hash with an input hasher of 256 bits.
     */
    hash(input: Array<any>): Field;
    /**
     * Returns a BHP hash with an input hasher of 256 bits.
     */
    hashToGroup(input: Array<any>): Group;
    /**
     * Create a BHP hasher with an input size of 256 bits.
     */
    constructor();
    /**
     * Create a BHP hasher with an input size of 256 bits with a custom domain separator.
     */
    static setup(domain_separator: string): BHP256;
}

export class BHP512 {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns a BHP commitment with an input hasher of 512 bits and randomizer.
     */
    commit(input: Array<any>, randomizer: Scalar): Field;
    /**
     * Returns a BHP commitment with an input hasher of 512 bits and randomizer.
     */
    commitToGroup(input: Array<any>, randomizer: Scalar): Group;
    /**
     * Returns the BHP hash with an input hasher of 512 bits.
     */
    hash(input: Array<any>): Field;
    /**
     * Returns a BHP hash with an input hasher of 512 bits.
     */
    hashToGroup(input: Array<any>): Group;
    /**
     * Create a BHP hasher with an input size of 512 bits.
     */
    constructor();
    /**
     * Create a BHP hasher with an input size of 512 bits with a custom domain separator.
     */
    static setup(domain_separator: string): BHP512;
}

export class BHP768 {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns a BHP commitment with an input hasher of 768 bits and randomizer.
     */
    commit(input: Array<any>, randomizer: Scalar): Field;
    /**
     * Returns a BHP commitment with an input hasher of 768 bits and randomizer.
     */
    commitToGroup(input: Array<any>, randomizer: Scalar): Group;
    /**
     * Returns the BHP hash with an input hasher of 768 bits.
     */
    hash(input: Array<any>): Field;
    /**
     * Returns a BHP hash with an input hasher of 768 bits.
     */
    hashToGroup(input: Array<any>): Group;
    /**
     * Create a BHP hasher with an input size of 768 bits.
     */
    constructor();
    /**
     * Create a BHP hasher with an input size of 768 bits with a custom domain separator.
     */
    static setup(domain_separator: string): BHP768;
}

/**
 * Boolean element.
 */
export class Boolean {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Logical AND.
     */
    and(other: Boolean): Boolean;
    /**
     * Clone the boolean element.
     */
    clone(): Boolean;
    /**
     * Check if one boolean element equals another.
     */
    equals(other: Boolean): boolean;
    /**
     * Reconstruct a boolean element from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): Boolean;
    /**
     * Create a boolean element from a Uint8Array of left endian bytes.
     */
    static fromBytesLe(bytes: Uint8Array): Boolean;
    /**
     * Creates a boolean object from a string representation ("true"/"false").
     */
    static fromString(boolean: string): Boolean;
    /**
     * Logical NAND.
     */
    nand(other: Boolean): Boolean;
    /**
     * Creates a Boolean from a native JS bool.
     */
    constructor(value: boolean);
    /**
     * Logical NOR.
     */
    nor(other: Boolean): Boolean;
    /**
     * Logical NOT.
     */
    not(): Boolean;
    /**
     * Logical OR.
     */
    or(other: Boolean): Boolean;
    /**
     * Generate a random boolean element.
     */
    static random(): Boolean;
    /**
     * Get the left endian boolean array representation of the boolean element.
     */
    toBitsLe(): Array<any>;
    /**
     * Encode the boolean element as a Uint8Array of left endian bytes.
     */
    toBytesLe(): Uint8Array;
    /**
     * Create a plaintext from the boolean element.
     */
    toPlaintext(): Plaintext;
    /**
     * Returns the string representation of the boolean element.
     */
    toString(): string;
    /**
     * Logical XOR.
     */
    xor(other: Boolean): Boolean;
}

/**
 * SnarkVM Ciphertext object. A Ciphertext represents an symmetrically encrypted plaintext. This
 * object provides decryption methods to recover the plaintext from the ciphertext (given the
 * api consumer has the proper decryption materials).
 */
export class Ciphertext {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Decrypt the ciphertext using the given view key.
     *
     * @param {ViewKey} viewKey The view key of the account that encrypted the ciphertext.
     * @param {Group} nonce The nonce used to encrypt the ciphertext.
     *
     * @returns {Plaintext} The decrypted plaintext.
     */
    decrypt(view_key: ViewKey, nonce: Group): Plaintext;
    /**
     * Decrypts a ciphertext into plaintext using the given ciphertext view key.
     *
     * @param {Field} transition_view_key The transition view key that was used to encrypt the ciphertext.
     *
     * @returns {Plaintext} The decrypted plaintext.
     */
    decryptSymmetric(transition_view_key: Field): Plaintext;
    /**
     * Decrypt a ciphertext using the view key of the transition signer, transition public key, and
     * (program, function, index) tuple.
     *
     * @param {ViewKey} view_key The view key of the transition signer.
     * @param {Group} transition_public_key The transition public key used to encrypt the ciphertext.
     * @param {string} program The program ID associated with the ciphertext.
     * @param {string} function_name The name of the function associated with the encrypted inputs and outputs.
     * @param {u16} index The index of the input or output parameter that was encrypted.
     *
     * @returns {Plaintext} The decrypted plaintext.
     */
    decryptWithTransitionInfo(view_key: ViewKey, transition_public_key: Group, program: string, function_name: string, index: number): Plaintext;
    /**
     * Decrypt a ciphertext using the transition view key and a (program, function, index) tuple.
     *
     * @param {Field} transition_view_key The transition view key that was used to encrypt the ciphertext.
     * @param {string} program The program ID associated with the ciphertext.
     * @param {string} function_name The name of the function associated with the encrypted inputs and outputs.
     * @param {u16} index The index of the input or output parameter that was encrypted.
     *
     * @returns {Plaintext} The decrypted plaintext.
     */
    decryptWithTransitionViewKey(transition_view_key: Field, program: string, function_name: string, index: number): Plaintext;
    /**
     * Get a ciphertext object from a series of bits represented as a boolean array.
     *
     * @param {Array} bits A left endian boolean array representing the bits of the ciphertext.
     *
     * @returns {Ciphertext} The ciphertext object.
     */
    static fromBitsLe(bits: Array<any>): Ciphertext;
    /**
     * Deserialize a left endian byte array into a Ciphertext.
     *
     * @param {Uint8Array} bytes The byte array representing the Ciphertext.
     *
     * @returns {Ciphertext} The Ciphertext object.
     */
    static fromBytesLe(bytes: Uint8Array): Ciphertext;
    /**
     * Get a ciphertext object from an array of fields.
     *
     * @param {Array} fields An array of fields.
     *
     * @returns {Ciphertext} The ciphertext object.
     */
    static fromFields(fields: Array<any>): Ciphertext;
    /**
     * Deserialize a Ciphertext string into a Ciphertext object.
     *
     * @param {string} ciphertext A string representation of the ciphertext.
     *
     * @returns {Ciphertext} The Ciphertext object.
     */
    static fromString(ciphertext: string): Ciphertext;
    /**
     * Get the left endian boolean array representation of the bits of the ciphertext.
     */
    toBitsLe(): Array<any>;
    /**
     * Serialize a Ciphertext object into a byte array.
     *
     * @returns {Uint8Array} The serialized Ciphertext.
     */
    toBytes(): Uint8Array;
    /**
     * Get the left endian byte array representation of the ciphertext.
     */
    toBytesLe(): Uint8Array;
    /**
     * Get the field array representation of the ciphertext.
     */
    toFields(): Array<any>;
    /**
     * Serialize a Ciphertext into a js string.
     *
     * @returns {string} The serialized Ciphertext.
     */
    toString(): string;
}

export class ComputeKey {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Get the address from the compute key.
     *
     * @returns {Address}
     */
    address(): Address;
    /**
     * Create a new compute key from a private key.
     *
     * @param {PrivateKey} private_key Private key
     *
     * @returns {ComputeKey} Compute key
     */
    static from_private_key(private_key: PrivateKey): ComputeKey;
    /**
     * Get the pr_tag of the compute key.
     *
     * @returns {Group} pr_tag
     */
    pk_sig(): Group;
    /**
     * Get the pr_sig of the compute key.
     *
     * @returns {Group} pr_sig
     */
    pr_sig(): Group;
    /**
     * Get the sk_prf of the compute key.
     *
     * @returns {Scalar} sk_prf
     */
    sk_prf(): Scalar;
}

/**
 * EncryptionToolkit provides a set of functions for encrypting, decrypting, and generating individual view keys for records, transitions, and ciphertexts.
 */
export class EncryptionToolkit {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checks if a record ciphertext is owned by the given view key.
     *
     * @param {ViewKey} view_key View key of the owner of the records.
     * @param {Vec<RecordCiphertext>} records The record ciphertexts for which to check ownership.
     *
     * @returns {Vec<RecordCiphertext>} The record ciphertexts that are owned by the view key.
     */
    static checkOwnedRecords(view_key: ViewKey, records: RecordCiphertext[]): RecordCiphertext[];
    /**
     * Decrypts a set of record ciphertexts in parallel and stores successful decryptions.
     *
     * @param {ViewKey} view_key The view key of the owner of the records.
     * @param {Vec<RecordCiphertext>} records The record ciphertexts to decrypt.
     *
     * @returns {vec<RecordPlaintext>} The decrypted record plaintexts.
     */
    static decryptOwnedRecords(view_key: ViewKey, records: RecordCiphertext[]): RecordPlaintext[];
    /**
     * Decrypts a record ciphertext using the record view key.  Decryption only succeeds
     * if the record view key was generated from the view key of the record owner.
     *
     * @param {Field} record_vk The record view key.
     * @param {RecordCiphertext} record_ciphertext The record ciphertext to decrypt.
     *
     * @returns {RecordPlaintext} The decrypted record plaintext.
     */
    static decryptRecordWithRVk(record_vk: Field, record_ciphertext: RecordCiphertext): RecordPlaintext;
    /**
     * Decrypt the sender ciphertext associated with a record.
     *
     * @param {ViewKey} view_key View key associated with the record.
     * @param {RecordPlaintext} record Record plaintext associated with a sender.
     * @param {Field} sender_ciphertext Sender ciphertext associated with the record.
     *
     * @returns {Address} address of the sender.
     */
    static decryptSender(view_key: ViewKey, record: RecordPlaintext, sender_ciphertext: Field): Address;
    /**
     * Decrypt the sender ciphertext associated with the record with the record view key.
     *
     * @param {Field} record_view_key Record view key associated with the record.
     * @param {Field} sender_ciphertext Sender ciphertext associated with the record.
     *
     * @return {Address} the address of the sender.
     */
    static decryptSenderWithRvk(record_view_key: Field, sender_ciphertext: Field): Address;
    /**
     * Decrypts a transition using the transition view key.  The ciphertext inputs and outputs
     * can only be decrypted if the transition view key was generated by the transaction signer.
     *
     * @param {Transition} transition The transition to decrypt.
     * @param {Field} transition_vk The transition view key.
     *
     * @returns {Transition} The decrypted transition.
     */
    static decryptTransitionWithVk(transition: Transition, transition_vk: Field): Transition;
    /**
     * Creates a record view key from the view key.  This can be later be used to decrypt a
     *
     * @param {ViewKey} view_key The view key of the owner of the record.
     * @param {RecordCiphertext} record_ciphertext The record ciphertext used to derive the record view key.
     *
     * @returns {Field} The record view key.
     */
    static generateRecordViewKey(view_key: ViewKey, record_ciphertext: RecordCiphertext): Field;
    /**
     * Generates a transition view key from the view key and the transition public key.
     *
     * @param {ViewKey} view_key The view key of the account that generated the transition.
     * @param {Group} tpk The transition public key.
     *
     * @returns {Field} The transition view key.
     */
    static generateTvk(view_key: ViewKey, tpk: Group): Field;
}

/**
 * Execution of an Aleo program.
 */
export class Execution {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Creates an execution object from a string representation of an execution.
     *
     * @returns {Execution | Error} The wasm representation of an execution object.
     */
    static fromString(execution: string): Execution;
    /**
     * Returns the global state root of the execution.
     *
     * @returns {Execution | Error} The global state root used in the execution.
     */
    globalStateRoot(): string;
    /**
     * Returns the proof of the execution.
     *
     * @returns {string} The execution proof.
     */
    proof(): string;
    /**
     * Returns the string representation of the execution.
     *
     * @returns {string} The string representation of the execution.
     */
    toString(): string;
    /**
     * Returns the transitions present in the execution.
     *
     * @returns Array<Transition> the array of transitions present in the execution.
     */
    transitions(): Array<any>;
}

export class ExecutionRequest {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Creates an request object from a bytes representation of an request.
     */
    static fromBytesLe(bytes: Uint8Array): ExecutionRequest;
    /**
     * Builds a request object from a string representation of a request.
     *
     * @param {string} request String representation of the request.
     */
    static fromString(request: string): ExecutionRequest;
    /**
     * Returns the function name.
     */
    function_name(): string;
    /**
     * Returns the input IDs for the transition.
     */
    input_ids(): Array<any>;
    /**
     * Returns the function inputs as an array of strings.
     */
    inputs(): Array<any>;
    /**
     * Returns the network ID.
     */
    network_id(): number;
    /**
     * Returns the program ID.
     */
    program_id(): string;
    /**
     * Returns the signer commitment `scm`.
     */
    scm(): Field;
    /**
     * Create a new request by signing over a program ID and set of inputs.
     *
     * @param {PrivateKey} private_key The private key of the signer.
     * @param {string} program_id The id of the program to create the signature for.
     * @param {string} function_name The function name to create the signature for.
     * @param {string[]} inputs The inputs to the function.
     * @param {string[]} input_types The input types of the function.
     * @param {Field | undefined} root_tvk The tvk of the function at the top of the call graph. This is undefined if this request is built for the top-level call or if there is only one function in the call graph.
     * @param {boolean} is_root Flag to indicate if this is the top level function in the call graph.
     */
    static sign(private_key: PrivateKey, program_id: string, function_name: string, inputs: Array<any>, input_types: Array<any>, root_tvk: Field | null | undefined, program_checksum: Field | null | undefined, is_root: boolean): ExecutionRequest;
    /**
     * Returns the signature for the transition.
     */
    signature(): Signature;
    /**
     * Returns the request signer.
     */
    signer(): Address;
    /**
     * Returns the tag secret key `sk_tag`.
     */
    sk_tag(): Field;
    /**
     * Returns the transition commitment `tcm`.
     */
    tcm(): Field;
    /**
     * Returns the bytes representation of the request.
     */
    toBytesLe(): Uint8Array;
    /**
     * Returns the request as a string.
     *
     * @returns {string} String representation of the request.
     */
    toString(): string;
    /**
     * Returns the transition public key `tpk`.
     */
    to_tpk(): Group;
    /**
     * Returns the transition view key `tvk`.
     */
    tvk(): Field;
    /**
     * Verify the input types within a request.
     *
     * @param {string[]} The input_types within the request.
     * @param {boolean} Flag to indicate whether this request is the first function in the call graph.
     */
    verify(input_types: Array<any>, is_root: boolean, program_checksum?: Field | null): boolean;
}

/**
 * Webassembly Representation of an Aleo function execution response
 *
 * This object is returned by the execution of an Aleo function off-chain. It provides methods for
 * retrieving the outputs of the function execution.
 */
export class ExecutionResponse {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns the execution object if present, null if otherwise.
     *
     * @returns {Execution | undefined} The execution object if present, null if otherwise
     */
    getExecution(): Execution | undefined;
    /**
     * Returns the function identifier
     */
    getFunctionId(): string;
    /**
     * Returns the program keys if present
     */
    getKeys(): KeyPair;
    /**
     * Get the outputs of the executed function
     *
     * @returns {Array} Array of strings representing the outputs of the function
     */
    getOutputs(): Array<any>;
    /**
     * Returns the program
     */
    getProgram(): Program;
    /**
     * Returns the proving_key if the proving key was cached in the Execution response.
     * Note the proving key is removed from the response object after the first call to this
     * function. Subsequent calls will return null.
     *
     * @returns {ProvingKey | undefined} The proving key
     */
    getProvingKey(): ProvingKey | undefined;
    /**
     * Returns the verifying_key associated with the program
     *
     * @returns {VerifyingKey} The verifying key
     */
    getVerifyingKey(): VerifyingKey;
}

/**
 * Field element.
 */
export class Field {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Add two field elements.
     */
    add(other: Field): Field;
    /**
     * Clone the field element.
     */
    clone(): Field;
    /**
     * Divide two field elements.
     */
    divide(other: Field): Field;
    /**
     * Double the field element.
     */
    double(): Field;
    /**
     * Check if one field element equals another.
     */
    equals(other: Field): boolean;
    /**
     * Reconstruct a field element from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): Field;
    /**
     * Create a field element from a Uint8Array of left endian bytes.
     */
    static fromBytesLe(bytes: Uint8Array): Field;
    /**
     * Creates a field object from a string representation of a field element.
     */
    static fromString(field: string): Field;
    /**
     * Invert the field element.
     */
    inverse(): Field;
    /**
     * Multiply two field elements.
     */
    multiply(other: Field): Field;
    /**
     * Initializes a new field as a domain separator.
     */
    static newDomainSeparator(domain: string): Field;
    /**
     * Get the multiplicative identity of the field.
     */
    static one(): Field;
    /**
     * Power of a field element.
     */
    pow(other: Field): Field;
    /**
     * Generate a random field element.
     */
    static random(): Field;
    /**
     * Subtract two field elements.
     */
    subtract(other: Field): Field;
    /**
     * Get the left endian boolean array representation of the field element.
     */
    toBitsLe(): Array<any>;
    /**
     * Encode the field element as a Uint8Array of left endian bytes.
     */
    toBytesLe(): Uint8Array;
    /**
     * Create a plaintext from the field element.
     */
    toPlaintext(): Plaintext;
    /**
     * Returns the string representation of the field element.
     */
    toString(): string;
    /**
     * Get the additive identity element of the field.
     */
    static zero(): Field;
}

export class GraphKey {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Create a new graph key from a string representation of a graph key
     *
     * @param {string} graph_key String representation of a graph key
     * @returns {GraphKey} Graph key
     */
    static from_string(graph_key: string): GraphKey;
    /**
     * Create a new graph key from a view key.
     *
     * @param {ViewKey} view_key View key
     * @returns {GraphKey} Graph key
     */
    static from_view_key(view_key: ViewKey): GraphKey;
    /**
     * Get the sk_tag of the graph key. Used to determine ownership of records.
     */
    sk_tag(): Field;
    /**
     * Get a string representation of a graph key
     *
     * @returns {string} String representation of a graph key
     */
    to_string(): string;
}

/**
 * Elliptic curve element.
 */
export class Group {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Add two group elements.
     */
    add(other: Group): Group;
    /**
     * Clone the group element.
     */
    clone(): Group;
    /**
     * Double the group element.
     */
    double(): Group;
    /**
     * Check if one group element equals another.
     */
    equals(other: Group): boolean;
    /**
     * Reconstruct a group element from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): Group;
    /**
     * Create a group element from a Uint8Array of left endian bytes.
     */
    static fromBytesLe(bytes: Uint8Array): Group;
    /**
     * Creates a group object from a string representation of a group element.
     */
    static fromString(group: string): Group;
    /**
     * Get the generator of the group.
     */
    static generator(): Group;
    /**
     * Get the inverse of the group element. This is the reflection of the point about the axis
     * of symmetry i.e. (x,y) -> (x, -y).
     */
    inverse(): Group;
    /**
     * Generate a random group element.
     */
    static random(): Group;
    /**
     * Multiply a group element by a scalar element.
     */
    scalarMultiply(scalar: Scalar): Group;
    /**
     * Subtract two group elements (equivalently: add the inverse of an element).
     */
    subtract(other: Group): Group;
    /**
     * Get the left endian boolean array representation of the group element.
     */
    toBitsLe(): Array<any>;
    /**
     * Encode the group element as a Uint8Array of left endian bytes.
     */
    toBytesLe(): Uint8Array;
    /**
     * Get the field array representation of the group.
     */
    toFields(): Array<any>;
    /**
     * Create a plaintext element from a group element.
     */
    toPlaintext(): Plaintext;
    /**
     * Returns the string representation of the group element.
     */
    toString(): string;
    /**
     * Get the x-coordinate of the group element.
     */
    toXCoordinate(): Field;
    /**
     * Get the group identity element under the group operation (i.e. the point at infinity.)
     */
    static zero(): Group;
}

export class I128 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): I128;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): I128;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: I128): I128;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): I128;
    /**
     * Wrapped division.
     */
    divWrapped(other: I128): I128;
    /**
     * Check equality with another integer.
     */
    equals(other: I128): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): I128;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): I128;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): I128;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): I128;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): I128;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: I128): I128;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): I128;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): I128;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): I128;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): I128;
    /**
     * Get the remainder from integer division.
     */
    rem(other: I128): I128;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: I128): I128;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: I128): I128;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

export class I16 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): I16;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): I16;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: I16): I16;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): I16;
    /**
     * Wrapped division.
     */
    divWrapped(other: I16): I16;
    /**
     * Check equality with another integer.
     */
    equals(other: I16): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): I16;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): I16;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): I16;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): I16;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): I16;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: I16): I16;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): I16;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): I16;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): I16;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): I16;
    /**
     * Get the remainder from integer division.
     */
    rem(other: I16): I16;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: I16): I16;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: I16): I16;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

export class I32 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): I32;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): I32;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: I32): I32;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): I32;
    /**
     * Wrapped division.
     */
    divWrapped(other: I32): I32;
    /**
     * Check equality with another integer.
     */
    equals(other: I32): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): I32;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): I32;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): I32;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): I32;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): I32;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: I32): I32;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): I32;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): I32;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): I32;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): I32;
    /**
     * Get the remainder from integer division.
     */
    rem(other: I32): I32;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: I32): I32;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: I32): I32;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

export class I64 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): I64;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): I64;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: I64): I64;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): I64;
    /**
     * Wrapped division.
     */
    divWrapped(other: I64): I64;
    /**
     * Check equality with another integer.
     */
    equals(other: I64): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): I64;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): I64;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): I64;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): I64;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): I64;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: I64): I64;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): I64;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): I64;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): I64;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): I64;
    /**
     * Get the remainder from integer division.
     */
    rem(other: I64): I64;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: I64): I64;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: I64): I64;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

export class I8 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): I8;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): I8;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: I8): I8;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): I8;
    /**
     * Wrapped division.
     */
    divWrapped(other: I8): I8;
    /**
     * Check equality with another integer.
     */
    equals(other: I8): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): I8;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): I8;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): I8;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): I8;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): I8;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: I8): I8;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): I8;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): I8;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): I8;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): I8;
    /**
     * Get the remainder from integer division.
     */
    rem(other: I8): I8;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: I8): I8;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: I8): I8;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

/**
 * Key pair object containing both the function proving and verifying keys
 */
export class KeyPair {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Create new key pair from proving and verifying keys
     *
     * @param {ProvingKey} proving_key Proving key corresponding to a function in an Aleo program
     * @param {VerifyingKey} verifying_key Verifying key corresponding to a function in an Aleo program
     * @returns {KeyPair} Key pair object containing both the function proving and verifying keys
     */
    constructor(proving_key: ProvingKey, verifying_key: VerifyingKey);
    /**
     * Get the proving key. This method will remove the proving key from the key pair
     *
     * @returns {ProvingKey}
     */
    provingKey(): ProvingKey;
    /**
     * Get the verifying key. This method will remove the verifying key from the key pair
     *
     * @returns {VerifyingKey}
     */
    verifyingKey(): VerifyingKey;
}

export class Metadata {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    static baseUrl(): string;
    static bond_public(): Metadata;
    static bond_validator(): Metadata;
    static claim_unbond_public(): Metadata;
    static fee_private(): Metadata;
    static fee_public(): Metadata;
    static inclusion(): Metadata;
    static join(): Metadata;
    static set_validator_state(): Metadata;
    static split(): Metadata;
    static transfer_private(): Metadata;
    static transfer_private_to_public(): Metadata;
    static transfer_public(): Metadata;
    static transfer_public_as_signer(): Metadata;
    static transfer_public_to_private(): Metadata;
    static unbond_public(): Metadata;
    locator: string;
    name: string;
    prover: string;
    verifier: string;
    verifyingKey: string;
}

/**
 * An offline query object used to insert the global state root and state paths needed to create
 * a valid inclusion proof offline.
 */
export class OfflineQuery {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Add a new block height to the offline query object.
     *
     * @param {u32} block_height The block height to add.
     */
    addBlockHeight(block_height: number): void;
    /**
     * Add a new state path to the offline query object.
     *
     * @param {string} commitment: The commitment corresponding to a record input.
     * @param {string} state_path: The state path corresponding to the commitment.
     */
    addStatePath(commitment: string, state_path: string): void;
    /**
     * Create an offline query object from a json string representation.
     *
     * @param {string} JSON string representation of the offline query object.
     */
    static fromString(s: string): OfflineQuery;
    /**
     * Creates a new offline query object. The state root is required to be passed in as a string
     *
     * @param {u32} block_height The block height.
     * @param {string} state_root The state root of the current network.
     *
     * @returns {OfflineQuery} The newly created offline query object.
     */
    constructor(block_height: number, state_root: string);
    /**
     * Get a json string representation of the offline query object.
     *
     * @returns {string} JSON string representation of the offline query object.
     */
    toString(): string;
}

export class Pedersen128 {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns a Pedersen commitment for the given (up to) 128-bit input and randomizer.
     */
    commit(input: Array<any>, randomizer: Scalar): Field;
    /**
     * Returns a Pedersen commitment for the given (up to) 128-bit input and randomizer.
     */
    commitToGroup(input: Array<any>, randomizer: Scalar): Group;
    /**
     * Returns the Pedersen hash for a given (up to) 128-bit input.
     */
    hash(input: Array<any>): Field;
    /**
     * Create a Pedersen hasher for a given (up to) 128-bit input.
     */
    constructor();
    /**
     * Create a Pedersen hasher for a given (up to) 128-bit input with a custom domain separator.
     */
    static setup(domain_separator: string): Pedersen128;
}

export class Pedersen64 {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns a Pedersen commitment for the given (up to) 64-bit input and randomizer.
     */
    commit(input: Array<any>, randomizer: Scalar): Field;
    /**
     * Returns a Pedersen commitment for the given (up to) 64-bit input and randomizer.
     */
    commitToGroup(input: Array<any>, randomizer: Scalar): Group;
    /**
     * Returns the Pedersen hash for a given (up to) 64-bit input.
     */
    hash(input: Array<any>): Field;
    /**
     * Create a Pedersen hasher for a given (up to) 64-bit input.
     */
    constructor();
    /**
     * Create a Pedersen64 hasher for a given (up to) 64-bit input with a custom domain separator.
     */
    static setup(domain_separator: string): Pedersen64;
}

/**
 * SnarkVM Plaintext object. Plaintext is a fundamental monadic type used to represent Aleo
 * primitive types (boolean, field, group, i8, i16, i32, i64, i128, u8, u16, u32, u64, u128,
 * scalar, and signature), struct types, and array types.
 *
 * In the context of a web or NodeJS application, this type is useful for turning an Aleo type into
 * a JS value, object, or array that might be necessary for performing computations within the
 * application.
 *
 * @example
 * // Get the bond state of an existing address.
 * const bondState = await fetch(https://api.explorer.provable.com/v1/mainnet/program/credits.aleo/mapping/bond_state/aleo12zlythl7htjdtjjjz3ahdj4vl6wk3zuzm37s80l86qpx8fyx95fqnxcn2f);
 * // Convert the bond state to a Plaintext object.
 * const bondStatePlaintext = Plaintext.fromString(bond_state);
 * // Convert the Plaintext object to a JS object.
 * const bondStateObject = bond_state_plaintext.toObject();
 * // Check if the bond state matches the expected object.
 * const expectedObject = { validator: "aleo12zlythl7htjdtjjjz3ahdj4vl6wk3zuzm37s80l86qpx8fyx95fqnxcn2f", microcredits: 100000000u64 };
 * assert( JSON.stringify(bondStateObject) === JSON.stringify(expectedObject) );
 */
export class Plaintext {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Encrypt a plaintext with an address and randomizer.
     *
     * @param {Address} address The address to encrypt the plaintext for.
     * @param {Scalar} randomizer The randomizer to use for encryption.
     *
     * @returns {Ciphertext} The encrypted ciphertext.
     */
    encrypt(address: Address, randomizer: Scalar): Ciphertext;
    /**
     * Encrypt a plaintext with a transition view key.
     *
     * @param {Field} transition_view_key The transition view key of the transition
     * associated with the plaintext.
     *
     * @returns {Ciphertext} The encrypted ciphertext.
     */
    encryptSymmetric(transition_view_key: Field): Ciphertext;
    /**
     * Find plaintext member if the plaintext is a struct. Returns `null` if the plaintext is not
     * a struct or the member does not exist.
     *
     * @param {string} name The name of the plaintext member to find.
     *
     * @returns {Plaintext} The plaintext member.
     */
    find(name: string): Plaintext;
    /**
     * Get a plaintext object from a series of bits represented as a boolean array.
     *
     * @param {Array} bits A little endian boolean array representing the bits plaintext.
     *
     * @returns {Plaintext} The plaintext object.
     */
    static fromBitsLe(bits: Array<any>): Plaintext;
    /**
     * Get a plaintext object from a series of bytes.
     *
     * @param {Uint8Array} bytes A little endian byte array representing the plaintext.
     *
     * @returns {Plaintext} The plaintext object.
     */
    static fromBytesLe(bytes: Uint8Array): Plaintext;
    /**
     * Get a plaintext object from an array of fields.
     *
     * @param {Array} fields An array of fields.
     *
     * @returns {Plaintext} The plaintext object.
     */
    static fromFields(fields: Array<any>): Plaintext;
    /**
     * Creates a plaintext object from a string representation of a plaintext.
     *
     * @param {string} plaintext The string representation of the plaintext.
     *
     * @returns {Plaintext} The plaintext object.
     */
    static fromString(plaintext: string): Plaintext;
    /**
     * Gives the type of the plaintext.
     *
     * @returns {string} The type of the plaintext.
     */
    plaintextType(): string;
    /**
     * Get the little endian boolean array representation of the bits of the plaintext.
     *
     * @returns {Array} The little endian boolean array representation of the bits of the plaintext.
     */
    toBitsLe(): Array<any>;
    /**
     * Get the raw big endian boolean array representation of the bits of the plaintext.
     *
     * @returns {Array} The raw big endian boolean array representation of the bits of the plaintext.
     */
    toBitsRawBe(): Array<any>;
    /**
     * Get the raw little endian boolean array representation of the bits of the plaintext.
     *
     * @returns {Array} The raw little endian boolean array representation of the bits of the plaintext.
     */
    toBitsRawLe(): Array<any>;
    /**
     * Get the little endian byte array representation of the plaintext.
     *
     * @returns {Uint8Array} The little endian byte array representation of the plaintext.
     */
    toBytesLe(): Uint8Array;
    /**
     * Get the raw big endian byte array representation of the plaintext.
     *
     * @returns {Uint8Array} The raw big endian byte array representation of the plaintext.
     */
    toBytesRawBe(): Uint8Array;
    /**
     * Get the raw little endian byte array representation of the plaintext.
     *
     * @returns {Uint8Array} The raw little endian byte array representation of the plaintext.
     */
    toBytesRawLe(): Uint8Array;
    /**
     * Get the field array representation of the plaintext.
     *
     * @returns {Array} The field array representation of the plaintext.
     */
    toFields(): Array<any>;
    /**
     * Get the raw field array representation of the plaintext.
     *
     * @returns {Array} The raw field array representation of the plaintext.
     */
    toFieldsRaw(): Array<any>;
    /**
     * Attempt to convert the plaintext to a JS object.
     *
     * @returns {Object} The JS object representation of the plaintext.
     */
    toObject(): any;
    /**
     * Returns the string representation of the plaintext.
     *
     * @returns {string} The string representation of the plaintext.
     */
    toString(): string;
}

export class Poseidon2 {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns the Poseidon hash with an input rate of 2.
     */
    hash(input: Array<any>): Field;
    /**
     * Returns the extended Poseidon hash with an input rate of 2.
     */
    hashMany(input: Array<any>, num_outputs: number): Array<any>;
    /**
     * Returns the Poseidon hash with an input rate of 2 on the affine curve.
     */
    hashToGroup(input: Array<any>): Group;
    /**
     * Returns the Poseidon hash with an input rate of 2 on the scalar field.
     */
    hashToScalar(input: Array<any>): Scalar;
    /**
     * Create a Poseidon hasher with an input rate of 2.
     */
    constructor();
    /**
     * Create a Poseidon hasher with an input rate of 2 and a custom domain separator.
     */
    static setup(domain_separator: string): Poseidon2;
}

export class Poseidon4 {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns the Poseidon hash with an input rate of 4.
     */
    hash(input: Array<any>): Field;
    /**
     * Returns the extended Poseidon hash with an input rate of 4.
     */
    hashMany(input: Array<any>, num_outputs: number): Array<any>;
    /**
     * Returns the Poseidon hash with an input rate of 4 on the affine curve.
     */
    hashToGroup(input: Array<any>): Group;
    /**
     * Returns the Poseidon hash with an input rate of 4 on the scalar field.
     */
    hashToScalar(input: Array<any>): Scalar;
    /**
     * Create a Poseidon hasher with an input rate of 4.
     */
    constructor();
    /**
     * Create a Poseidon hasher with an input rate of 4 and a custom domain separator.
     */
    static setup(domain_separator: string): Poseidon4;
}

export class Poseidon8 {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns the Poseidon hash with an input rate of 8.
     */
    hash(input: Array<any>): Field;
    /**
     * Returns the extended Poseidon hash with an input rate of 8.
     */
    hashMany(input: Array<any>, num_outputs: number): Array<any>;
    /**
     * Returns the Poseidon hash with an input rate of 8 on the affine curve.
     */
    hashToGroup(input: Array<any>): Group;
    /**
     * Returns the Poseidon hash with an input rate of 8 on the scalar field.
     */
    hashToScalar(input: Array<any>): Scalar;
    /**
     * Create a Poseidon hasher with an input rate of 8.
     */
    constructor();
    /**
     * Create a Poseidon hasher with an input rate of 8 and a custom domain separator.
     */
    static setup(domain_separator: string): Poseidon8;
}

/**
 * Private key of an Aleo account
 */
export class PrivateKey {
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Get private key from a private key ciphertext and secret originally used to encrypt it
     *
     * @param {PrivateKeyCiphertext} ciphertext Ciphertext representation of the private key
     * @param {string} secret Secret originally used to encrypt the private key
     * @returns {PrivateKey} Private key
     */
    static fromPrivateKeyCiphertext(ciphertext: PrivateKeyCiphertext, secret: string): PrivateKey;
    /**
     * Get a private key from a series of unchecked bytes
     *
     * @param {Uint8Array} seed Unchecked 32 byte long Uint8Array acting as the seed for the private key
     * @returns {PrivateKey}
     */
    static from_seed_unchecked(seed: Uint8Array): PrivateKey;
    /**
     * Get a private key from a string representation of a private key
     *
     * @param {string} seed String representation of a private key
     * @returns {PrivateKey}
     */
    static from_string(private_key: string): PrivateKey;
    /**
     * Generate a new private key using a cryptographically secure random number generator
     *
     * @returns {PrivateKey}
     */
    constructor();
    /**
     * Get a new randomly generated private key ciphertext using a secret. The secret is sensitive
     * and will be needed to decrypt the private key later, so it should be stored securely
     *
     * @param {string} secret Secret used to encrypt the private key
     * @returns {PrivateKeyCiphertext} Ciphertext representation of the private key
     */
    static newEncrypted(secret: string): PrivateKeyCiphertext;
    /**
     * Sign a message with the private key
     *
     * @param {Uint8Array} Byte array representing a message signed by the address
     * @returns {Signature} Signature generated by signing the message with the address
     */
    sign(message: Uint8Array): Signature;
    /**
     * Sign an instance of a valid Aleo data type or record.
     *
     * @param {String} message The string representation of the Aleo datatype or record to sign.
     * @returns {Signature} Signature of the message.
     */
    signValue(message: string): Signature;
    /**
     * Encrypt an existing private key with a secret. The secret is sensitive and will be needed to
     * decrypt the private key later, so it should be stored securely
     *
     * @param {string} secret Secret used to encrypt the private key
     * @returns {PrivateKeyCiphertext} Ciphertext representation of the private key
     */
    toCiphertext(secret: string): PrivateKeyCiphertext;
    /**
     * Get the address corresponding to the private key
     *
     * @returns {Address}
     */
    to_address(): Address;
    /**
     * Get a string representation of the private key. This function should be used very carefully
     * as it exposes the private key plaintext
     *
     * @returns {string} String representation of a private key
     */
    to_string(): string;
    /**
     * Get the view key corresponding to the private key
     *
     * @returns {ViewKey}
     */
    to_view_key(): ViewKey;
}

/**
 * Private Key in ciphertext form
 */
export class PrivateKeyCiphertext {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Decrypts a private ciphertext using a secret string. This must be the same secret used to
     * encrypt the private key
     *
     * @param {string} secret Secret used to encrypt the private key
     * @returns {PrivateKey} Private key
     */
    decryptToPrivateKey(secret: string): PrivateKey;
    /**
     * Encrypt a private key using a secret string. The secret is sensitive and will be needed to
     * decrypt the private key later, so it should be stored securely
     *
     * @param {PrivateKey} private_key Private key to encrypt
     * @param {string} secret Secret to encrypt the private key with
     * @returns {PrivateKeyCiphertext} Private key ciphertext
     */
    static encryptPrivateKey(private_key: PrivateKey, secret: string): PrivateKeyCiphertext;
    /**
     * Creates a PrivateKeyCiphertext from a string
     *
     * @param {string} ciphertext Ciphertext string
     * @returns {PrivateKeyCiphertext} Private key ciphertext
     */
    static fromString(ciphertext: string): PrivateKeyCiphertext;
    /**
     * Returns the ciphertext string
     *
     * @returns {string} Ciphertext string
     */
    toString(): string;
}

/**
 * Webassembly Representation of an Aleo program
 */
export class Program {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Get a unique address of the program
     *
     * @returns {Address} The address of the program
     */
    address(): Address;
    /**
     * Create a program from a program string
     *
     * @param {string} program Aleo program source code
     * @returns {Program} Program object
     */
    static fromString(program: string): Program;
    /**
     * Get the credits.aleo program
     *
     * @returns {Program} The credits.aleo program
     */
    static getCreditsProgram(): Program;
    /**
     * Get a javascript object representation of the function inputs and types. This can be used
     * to generate a web form to capture user inputs for an execution of a function.
     *
     * @param {string} function_name Name of the function to get inputs for
     * @returns {Array} Array of function inputs
     *
     * @example
     * const expected_inputs = [
     *     {
     *       type:"record",
     *       visibility:"private",
     *       record:"credits",
     *       members:[
     *         {
     *           name:"microcredits",
     *           type:"u64",
     *           visibility:"private"
     *         }
     *       ],
     *       register:"r0"
     *     },
     *     {
     *       type:"address",
     *       visibility:"private",
     *       register:"r1"
     *     },
     *     {
     *       type:"u64",
     *       visibility:"private",
     *       register:"r2"
     *     }
     * ];
     *
     * const credits_program = aleo_wasm.Program.getCreditsProgram();
     * const transfer_function_inputs = credits_program.getFunctionInputs("transfer_private");
     * console.log(transfer_function_inputs === expected_inputs); // Output should be "true"
     */
    getFunctionInputs(function_name: string): Array<any>;
    /**
     * Get javascript array of functions names in the program
     *
     * @returns {Array} Array of all function names present in the program
     *
     * @example
     * const expected_functions = [
     *   "mint",
     *   "transfer_private",
     *   "transfer_private_to_public",
     *   "transfer_public",
     *   "transfer_public_to_private",
     *   "join",
     *   "split",
     *   "fee"
     * ]
     *
     * const credits_program = aleo_wasm.Program.getCreditsProgram();
     * const credits_functions = credits_program.getFunctions();
     * console.log(credits_functions === expected_functions); // Output should be "true"
     */
    getFunctions(): Array<any>;
    /**
     * Get program_imports
     *
     * @returns {Array} The program imports
     *
     * @example
     *
     * const DOUBLE_TEST = "import multiply_test.aleo;
     *
     * program double_test.aleo;
     *
     * function double_it:
     *     input r0 as u32.private;
     *     call multiply_test.aleo/multiply 2u32 r0 into r1;
     *     output r1 as u32.private;";
     *
     * const expected_imports = [
     *    "multiply_test.aleo"
     * ];
     *
     * const program = aleo_wasm.Program.fromString(DOUBLE_TEST_PROGRAM);
     * const imports = program.getImports();
     * console.log(imports === expected_imports); // Output should be "true"
     */
    getImports(): Array<any>;
    /**
     * Get a the list of a program's mappings and the names/types of their keys and values.
     *
     * @returns {Array} - An array of objects representing the mappings in the program
     * @example
     * const expected_mappings = [
     *    {
     *       name: "account",
     *       key_name: "owner",
     *       key_type: "address",
     *       value_name: "microcredits",
     *       value_type: "u64"
     *    }
     * ]
     *
     * const credits_program = aleo_wasm.Program.getCreditsProgram();
     * const credits_mappings = credits_program.getMappings();
     * console.log(credits_mappings === expected_mappings); // Output should be "true"
     */
    getMappings(): Array<any>;
    /**
     * Get a javascript object representation of a program record and its types
     *
     * @param {string} record_name Name of the record to get members for
     * @returns {Object} Object containing the record name, type, and members
     *
     * @example
     *
     * const expected_record = {
     *     type: "record",
     *     record: "Credits",
     *     members: [
     *       {
     *         name: "owner",
     *         type: "address",
     *         visibility: "private"
     *       },
     *       {
     *         name: "microcredits",
     *         type: "u64",
     *         visibility: "private"
     *       }
     *     ];
     *  };
     *
     * const credits_program = aleo_wasm.Program.getCreditsProgram();
     * const credits_record = credits_program.getRecordMembers("Credits");
     * console.log(credits_record === expected_record); // Output should be "true"
     */
    getRecordMembers(record_name: string): object;
    /**
     * Get a javascript object representation of a program struct and its types
     *
     * @param {string} struct_name Name of the struct to get members for
     * @returns {Array} Array containing the struct members
     *
     * @example
     *
     * const STRUCT_PROGRAM = "program token_issue.aleo;
     *
     * struct token_metadata:
     *     network as u32;
     *     version as u32;
     *
     * struct token:
     *     token_id as u32;
     *     metadata as token_metadata;
     *
     * function no_op:
     *    input r0 as u64;
     *    output r0 as u64;"
     *
     * const expected_struct_members = [
     *    {
     *      name: "token_id",
     *      type: "u32",
     *    },
     *    {
     *      name: "metadata",
     *      type: "struct",
     *      struct_id: "token_metadata",
     *      members: [
     *       {
     *         name: "network",
     *         type: "u32",
     *       }
     *       {
     *         name: "version",
     *         type: "u32",
     *       }
     *     ]
     *   }
     * ];
     *
     * const program = aleo_wasm.Program.fromString(STRUCT_PROGRAM);
     * const struct_members = program.getStructMembers("token");
     * console.log(struct_members === expected_struct_members); // Output should be "true"
     */
    getStructMembers(struct_name: string): Array<any>;
    /**
     * Determine if a function is present in the program
     *
     * @param {string} functionName Name of the function to check for
     * @returns {boolean} True if the program is valid, false otherwise
     */
    hasFunction(function_name: string): boolean;
    /**
     * Get the id of the program
     *
     * @returns {string} The id of the program
     */
    id(): string;
    /**
     * Determine equality with another program
     *
     * @param {Program} other The other program to compare
     * @returns {boolean} True if the programs are equal, false otherwise
     */
    isEqual(other: Program): boolean;
    /**
     * Get a string representation of the program
     *
     * @returns {string} String containing the program source code
     */
    toString(): string;
}

export class ProgramManager {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Create an execution `Authorization` for a given program:function tuple with specified inputs.
     *
     * @param private_key The private key of the signer.
     * @param program The program source code containing the function to authorize.
     * @param function_name The function to authorize.
     * @param inputs A javascript array of inputs to the function.
     * @param imports The imports to the program in the format {"programname.aleo":"aleo instructions source code"}.
     */
    static authExecute(private_key: PrivateKey, program: string, function_name: string, inputs: Array<any>, imports?: object | null, edition?: number | null, import_editions?: object | null): Promise<Authorization>;
    /**
     * Create an `Authorization` for `credits.aleo/fee_public` or `credits.aleo/fee_private`.
     * This object requires an associated execution or deployment ID. This can be gained from
     * any previously created authorization by calling (authorization.toExecutionId()).
     *
     * @param private_key The private key of the signer.
     * @param deployment_or_execution_id The id of the deployment or execution to authorize the fee program for.
     * @param base_fee_credits The base fee to be paid for the authorization
     * @param priority_fee_credits The optional priority fee to be paid for the transaction
     * @param fee_record The record to spend the fee from
     * @returns {Authorization}
     */
    static authorizeFee(private_key: PrivateKey, deployment_or_execution_id: string, base_fee_credits: number, priority_fee_credits: number, fee_record?: RecordPlaintext | null): Promise<Authorization>;
    /**
     * Create an execution `Authorization` without generating a circuit. Use this function when
     * fast delegated proving is needed.
     *
     * @param private_key The private key of the signer.
     * @param program The program source code containing the function to authorize.
     * @param function_name The function to authorize.
     * @param inputs A javascript array of inputs to the function.
     * @param imports The imports to the program in the format {"programname.aleo":"aleo instructions source code"}.
     * @param edition The edition of the main program (defaults to 1 if not provided).
     * @param import_editions The editions of imported programs in the format {"programname.aleo": edition_number} (defaults to 1 for each import if not provided).
     */
    static buildAuthorizationUnchecked(private_key: PrivateKey, program: string, function_name: string, inputs: Array<any>, imports?: object | null, edition?: number | null, import_editions?: object | null): Promise<Authorization>;
    /**
     * Deploy an Aleo program
     *
     * @param private_key The private key of the sender
     * @param program The source code of the program being deployed
     * @param imports A javascript object holding the source code of any imported programs in the
     * form \{"program_name1": "program_source_code", "program_name2": "program_source_code", ..\}.
     * Note that all imported programs must be deployed on chain before the main program in order
     * for the deployment to succeed
     * @param priority_fee_credits The optional priority fee to be paid for the transaction
     * @param fee_record The record to spend the fee from
     * @param url The url of the Aleo network node to send the transaction to
     * @param imports (optional) Provide a list of imports to use for the program deployment in the
     * form of a javascript object where the keys are a string of the program name and the values
     * are a string representing the program source code \{ "hello.aleo": "hello.aleo source code" \}
     * @param fee_proving_key (optional) Provide a proving key to use for the fee execution
     * @param fee_verifying_key (optional) Provide a verifying key to use for the fee execution
     * @returns {Transaction}
     */
    static buildDeploymentTransaction(private_key: PrivateKey, program: string, priority_fee_credits: number, fee_record?: RecordPlaintext | null, url?: string | null, imports?: object | null, fee_proving_key?: ProvingKey | null, fee_verifying_key?: VerifyingKey | null, offline_query?: OfflineQuery | null): Promise<Transaction>;
    /**
     * Execute Aleo function and create an Aleo execution transaction
     *
     * @param private_key The private key of the sender
     * @param program The source code of the program being executed
     * @param function The name of the function to execute
     * @param inputs A javascript array of inputs to the function
     * @param priority_fee_credits The optional priority fee to be paid for the transaction
     * @param fee_record The record to spend the fee from
     * @param url The url of the Aleo network node to send the transaction to
     * If this is set to 'true' the keys synthesized (or passed in as optional parameters via the
     * `proving_key` and `verifying_key` arguments) will be stored in the ProgramManager's memory
     * and used for subsequent transactions. If this is set to 'false' the proving and verifying
     * keys will be deallocated from memory after the transaction is executed.
     * @param imports (optional) Provide a list of imports to use for the function execution in the
     * form of a javascript object where the keys are a string of the program name and the values
     * are a string representing the program source code \{ "hello.aleo": "hello.aleo source code" \}
     * @param proving_key (optional) Provide a verifying key to use for the function execution
     * @param verifying_key (optional) Provide a verifying key to use for the function execution
     * @param fee_proving_key (optional) Provide a proving key to use for the fee execution
     * @param fee_verifying_key (optional) Provide a verifying key to use for the fee execution
     * @param offline_query An offline query object to use if building a transaction without an internet connection.
     * @param edition The edition of the program to execute. Defaults to the latest found on the network, or 1 if the program does not exist on the network.
     * @returns {Transaction}
     */
    static buildExecutionTransaction(private_key: PrivateKey, program: string, _function: string, inputs: Array<any>, priority_fee_credits: number, fee_record?: RecordPlaintext | null, url?: string | null, imports?: object | null, proving_key?: ProvingKey | null, verifying_key?: VerifyingKey | null, fee_proving_key?: ProvingKey | null, fee_verifying_key?: VerifyingKey | null, offline_query?: OfflineQuery | null, edition?: number | null): Promise<Transaction>;
    /**
     * Join two records together to create a new record with an amount of credits equal to the sum
     * of the credits of the two original records
     *
     * @param private_key The private key of the sender
     * @param record_1 The first record to combine
     * @param record_2 The second record to combine
     * @param priority_fee_credits The opptional priority fee to be paid for the transaction
     * @param fee_record The record to spend the fee from
     * @param url The url of the Aleo network node to send the transaction to
     * @param join_proving_key (optional) Provide a proving key to use for the join function
     * @param join_verifying_key (optional) Provide a verifying key to use for the join function
     * @param fee_proving_key (optional) Provide a proving key to use for the fee execution
     * @param fee_verifying_key (optional) Provide a verifying key to use for the fee execution
     * @returns {Transaction} Transaction object
     */
    static buildJoinTransaction(private_key: PrivateKey, record_1: RecordPlaintext, record_2: RecordPlaintext, priority_fee_credits: number, fee_record?: RecordPlaintext | null, url?: string | null, join_proving_key?: ProvingKey | null, join_verifying_key?: VerifyingKey | null, fee_proving_key?: ProvingKey | null, fee_verifying_key?: VerifyingKey | null, offline_query?: OfflineQuery | null): Promise<Transaction>;
    /**
     * Create a `ProvingRequest` object. This object creates authorizations for the top level
     * function and associated fee function. This object can be sent directly to a remote prover
     * OR used to extract both execution and fee authorizations.
     *
     * @param private_key The private key of the signer.
     * @param program The program source code containing the function to authorize.
     * @param function_name The function to authorize.
     * @param inputs A javascript array of inputs to the function.
     * @param base_fee_credits The base fee to be paid for the authorization
     * @param priority_fee_credits The optional priority fee to be paid for the transaction
     * @param fee_record The record to spend the fee from
     * @param imports The imports to the program in the format {"programname.aleo":"aleo instructions source code"}.
     * @param url The url of the Aleo network node to send the transaction to
     * @param broadcast (optional) Flag to indicate if the transaction should be broadcast
     * @returns {Authorization}
     */
    static buildProvingRequest(private_key: PrivateKey, program: string, function_name: string, inputs: Array<any>, base_fee_credits: number, priority_fee_credits: number, fee_record: RecordPlaintext | null | undefined, imports: object | null | undefined, broadcast: boolean, unchecked: boolean, edition?: number | null): Promise<ProvingRequest>;
    /**
     * Split an Aleo credits record into two separate records. This function does not require a fee.
     *
     * @param private_key The private key of the sender
     * @param split_amount The amount of the credit split. This amount will be subtracted from the
     * value of the record and two new records will be created with the split amount and the remainder
     * @param amount_record The record to split
     * @param url The url of the Aleo network node to send the transaction to
     * @param split_proving_key (optional) Provide a proving key to use for the split function
     * @param split_verifying_key (optional) Provide a verifying key to use for the split function
     * @returns {Transaction} Transaction object
     */
    static buildSplitTransaction(private_key: PrivateKey, split_amount: number, amount_record: RecordPlaintext, url?: string | null, split_proving_key?: ProvingKey | null, split_verifying_key?: VerifyingKey | null, offline_query?: OfflineQuery | null): Promise<Transaction>;
    /**
     * Send credits from one Aleo account to another
     *
     * @param private_key The private key of the sender
     * @param amount_credits The amount of credits to send
     * @param recipient The recipient of the transaction
     * @param transfer_type The type of the transfer (options: "private", "public", "private_to_public", "public_to_private")
     * @param amount_record The record to fund the amount from
     * @param priority_fee_credits The optional priority fee to be paid for the transaction
     * @param fee_record The record to spend the fee from
     * @param url The url of the Aleo network node to send the transaction to
     * @param transfer_verifying_key (optional) Provide a verifying key to use for the transfer
     * function
     * @param fee_proving_key (optional) Provide a proving key to use for the fee execution
     * @param fee_verifying_key (optional) Provide a verifying key to use for the fee execution
     * @returns {Transaction}
     */
    static buildTransferTransaction(private_key: PrivateKey, amount_credits: number, recipient: string, transfer_type: string, amount_record: RecordPlaintext | null | undefined, priority_fee_credits: number, fee_record?: RecordPlaintext | null, url?: string | null, transfer_proving_key?: ProvingKey | null, transfer_verifying_key?: VerifyingKey | null, fee_proving_key?: ProvingKey | null, fee_verifying_key?: VerifyingKey | null, offline_query?: OfflineQuery | null): Promise<Transaction>;
    /**
     * Estimate the fee for a program deployment
     *
     * Disclaimer: Fee estimation is experimental and may not represent a correct estimate on any current or future network
     *
     * @param program The source code of the program being deployed
     * @param imports (optional) Provide a list of imports to use for the deployment fee estimation
     * in the form of a javascript object where the keys are a string of the program name and the values
     * are a string representing the program source code \{ "hello.aleo": "hello.aleo source code" \}
     * @returns {u64}
     */
    static estimateDeploymentFee(program: string, imports?: object | null): Promise<bigint>;
    /**
     * Estimate Fee for Aleo function execution. Note if "cache" is set to true, the proving and
     * verifying keys will be stored in the ProgramManager's memory and used for subsequent
     * program executions.
     *
     * @param program The source code of the program to estimate the execution fee for.
     * @param function The name of the function to estimate the execution fee for.
     * @param imports (optional) Provide a list of imports to use for the fee estimation in the
     * form of a javascript object where the keys are a string of the program name and the values
     * are a string representing the program source code \{ "hello.aleo": "hello.aleo source code" \}
     * @param edition {
     * @returns {u64} Fee in microcredits
     */
    static estimateExecutionFee(program: string, _function: string, imports?: object | null, edition?: number | null): Promise<bigint>;
    /**
     * Estimate Fee for an Authorization.
     *
     * @param authorization Authorization to estimate the fee for.
     * @param program The program the Authorization is for.
     * @param imports Provide a list of imports to use for the fee estimation in the
     * form of a javascript object where the keys are a string of the program name and the values
     * are a string representing the program source code \{ "hello.aleo": "hello.aleo source code" \}
     * @param offline_query The offline query object used to insert the global state root and state paths needed to create
     * a valid inclusion proof offline.
     * @param edition: Optional edition to estimate the fee for.
     * @returns {u64} Fee in microcredits
     */
    static estimateFeeForAuthorization(authorization: Authorization, program: string, imports?: object | null, edition?: number | null): Promise<bigint>;
    /**
     * Estimate the finalize fee component for executing a function. This fee is additional to the
     * size of the execution of the program in bytes. If the function does not have a finalize
     * step, then the finalize fee is 0.
     *
     * Disclaimer: Fee estimation is experimental and may not represent a correct estimate on any current or future network
     *
     * @param program The program containing the function to estimate the finalize fee for
     * @param function The function to estimate the finalize fee for
     * @returns {u64} Fee in microcredits
     */
    static estimateFinalizeFee(program: string, _function: string): bigint;
    /**
     * Estimate the component of the deployment cost which comes from the fee for the program name.
     * Note that this cost does not represent the entire cost of deployment. It is additional to
     * the cost of the size (in bytes) of the deployment.
     *
     * Disclaimer: Fee estimation is experimental and may not represent a correct estimate on any current or future network
     *
     * @param name The name of the program to be deployed
     * @returns {u64}
     */
    static estimateProgramNameCost(name: string): bigint;
    /**
     * Execute an authorization.
     *
     * @param authorization The authorization to execute.
     * @param fee_authorization The fee authorization to execute.
     * @param program The program authorized to be executed.
     * @param imports The imports of the program being executed.
     * @param url The url to get the inclusion proving information from.
     * @param offline_query Optional offline query object if building a Transaction offline.
     */
    static executeAuthorization(authorization: Authorization, fee_authorization: Authorization | null | undefined, program: string, proving_key?: ProvingKey | null, verifying_key?: VerifyingKey | null, fee_proving_key?: ProvingKey | null, fee_verifying_key?: VerifyingKey | null, imports?: object | null, url?: string | null, offline_query?: OfflineQuery | null): Promise<Transaction>;
    /**
     * Execute an arbitrary function locally
     *
     * @param {PrivateKey} private_key The private key of the sender
     * @param {string} program The source code of the program being executed
     * @param {string} function The name of the function to execute
     * @param {Array} inputs A javascript array of inputs to the function
     * @param {boolean} prove_execution If true, the execution will be proven and an execution object
     * containing the proof and the encrypted inputs and outputs needed to verify the proof offline
     * will be returned.
     * @param {boolean} cache Cache the proving and verifying keys in the Execution response.
     * If this is set to 'true' the keys synthesized will be stored in the Execution Response
     * and the `ProvingKey` and `VerifyingKey` can be retrieved from the response via the `.getKeys()`
     * method.
     * @param {Object | undefined} imports (optional) Provide a list of imports to use for the function execution in the
     * form of a javascript object where the keys are a string of the program name and the values
     * are a string representing the program source code \{ "hello.aleo": "hello.aleo source code" \}
     * @param {ProvingKey | undefined} proving_key (optional) Provide a verifying key to use for the function execution
     * @param {VerifyingKey | undefined} verifying_key (optional) Provide a verifying key to use for the function execution
     */
    static executeFunctionOffline(private_key: PrivateKey, program: string, _function: string, inputs: Array<any>, prove_execution: boolean, cache: boolean, imports?: object | null, proving_key?: ProvingKey | null, verifying_key?: VerifyingKey | null, url?: string | null, offline_query?: OfflineQuery | null, edition?: number | null): Promise<ExecutionResponse>;
    static loadInclusionProver(proving_key: ProvingKey): void;
    /**
     * Synthesize proving and verifying keys for a program
     *
     * @param {string} program The program source code of the program to synthesize keys for
     * @param {string} function_id The function to synthesize keys for
     * @param {Array} inputs The inputs to the function
     * @param {Object | undefined} imports The imports for the program
     */
    static synthesizeKeyPair(private_key: PrivateKey, program: string, function_id: string, inputs: Array<any>, imports?: object | null, edition?: number | null): Promise<KeyPair>;
}

/**
 * Proving key for a function within an Aleo program
 */
export class ProvingKey {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Return the checksum of the proving key
     *
     * @returns {string} Checksum of the proving key
     */
    checksum(): string;
    /**
     * Create a copy of the proving key
     *
     * @returns {ProvingKey} A copy of the proving key
     */
    copy(): ProvingKey;
    /**
     * Construct a new proving key from a byte array
     *
     * @param {Uint8Array} bytes Byte array representation of a proving key
     * @returns {ProvingKey}
     */
    static fromBytes(bytes: Uint8Array): ProvingKey;
    /**
     * Create a proving key from string
     *
     * @param {string} String representation of the proving key
     */
    static fromString(string: string): ProvingKey;
    /**
     * Verify if the proving key is for the bond_public function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("bond_public_proving_key.bin");
     * provingKey.isBondPublicProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the bond_public function, false if otherwise
     */
    isBondPublicProver(): boolean;
    /**
     * Verify if the proving key is for the bond_validator function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("bond_validator_proving_key.bin");
     * provingKey.isBondPublicProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the bond_validator function, false if otherwise
     */
    isBondValidatorProver(): boolean;
    /**
     * Verify if the proving key is for the claim_unbond function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("claim_unbond_proving_key.bin");
     * provingKey.isClaimUnbondProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the claim_unbond function, false if otherwise
     */
    isClaimUnbondPublicProver(): boolean;
    /**
     * Verify if the proving key is for the fee_private function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("fee_private_proving_key.bin");
     * provingKey.isFeePrivateProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the fee_private function, false if otherwise
     */
    isFeePrivateProver(): boolean;
    /**
     * Verify if the proving key is for the fee_public function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("fee_public_proving_key.bin");
     * provingKey.isFeePublicProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the fee_public function, false if otherwise
     */
    isFeePublicProver(): boolean;
    /**
     * Verify if the proving key is for the inclusion function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("inclusion_proving_key.bin");
     * provingKey.isInclusionProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the inclusion function, false if otherwise
     */
    isInclusionProver(): boolean;
    /**
     * Verify if the proving key is for the join function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("join_proving_key.bin");
     * provingKey.isJoinProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the join function, false if otherwise
     */
    isJoinProver(): boolean;
    /**
     * Verify if the proving key is for the set_validator_state function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("set_validator_set_proving_key.bin");
     * provingKey.isSetValidatorStateProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the set_validator_state function, false if otherwise
     */
    isSetValidatorStateProver(): boolean;
    /**
     * Verify if the proving key is for the split function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("split_proving_key.bin");
     * provingKey.isSplitProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the split function, false if otherwise
     */
    isSplitProver(): boolean;
    /**
     * Verify if the proving key is for the transfer_private function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("transfer_private_proving_key.bin");
     * provingKey.isTransferPrivateProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the transfer_private function, false if otherwise
     */
    isTransferPrivateProver(): boolean;
    /**
     * Verify if the proving key is for the transfer_private_to_public function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("transfer_private_to_public_proving_key.bin");
     * provingKey.isTransferPrivateToPublicProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the transfer_private_to_public function, false if otherwise
     */
    isTransferPrivateToPublicProver(): boolean;
    /**
     * Verify if the proving key is for the transfer_public_as_signer function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("transfer_public_as_signer_proving_key.bin");
     * provingKey.isTransferPublicAsSignerProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the transfer_public function, false if otherwise
     */
    isTransferPublicAsSignerProver(): boolean;
    /**
     * Verify if the proving key is for the transfer_public function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("transfer_public_proving_key.bin");
     * provingKey.isTransferPublicProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the transfer_public function, false if otherwise
     */
    isTransferPublicProver(): boolean;
    /**
     * Verify if the proving key is for the transfer_public_to_private function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("transfer_public_to_private_proving_key.bin");
     * provingKey.isTransferPublicToPrivateProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the transfer_public_to_private function, false if otherwise
     */
    isTransferPublicToPrivateProver(): boolean;
    /**
     * Verify if the proving key is for the unbond_public function
     *
     * @example
     * const provingKey = ProvingKey.fromBytes("unbond_public.bin");
     * provingKey.isUnbondPublicProver() ? console.log("Key verified") : throw new Error("Invalid key");
     *
     * @returns {boolean} returns true if the proving key is for the unbond_public_prover function, false if otherwise
     */
    isUnbondPublicProver(): boolean;
    /**
     * Return the byte representation of a proving key
     *
     * @returns {Uint8Array} Byte array representation of a proving key
     */
    toBytes(): Uint8Array;
    /**
     * Get a string representation of the proving key
     *
     * @returns {string} String representation of the proving key
     */
    toString(): string;
}

/**
 * Represents a proving request to a prover.
 */
export class ProvingRequest {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Get the Authorization of the main function in the ProvingRequest.
     */
    authorization(): Authorization;
    /**
     * Get the broadcast flag set in the ProvingRequest.
     */
    broadcast(): boolean;
    /**
     * Check if a ProvingRequest is the same as another ProvingRequest.
     */
    equals(other: ProvingRequest): boolean;
    /**
     * Get the fee Authorization in the ProvingRequest.
     */
    feeAuthorization(): Authorization | undefined;
    /**
     * Creates a ProvingRequest from a left-endian byte representation of the ProvingRequest.
     *
     * @param {Uint8Array} bytes Left-endian bytes representing the proving request.
     */
    static fromBytesLe(bytes: Uint8Array): ProvingRequest;
    /**
     * Creates a ProvingRequest from a string representation.
     *
     * @param {Uint8Array} request String representation of the ProvingRequest.
     */
    static fromString(request: string): ProvingRequest;
    /**
     * Creates a new ProvingRequest from a function Authorization and an optional fee Authorization.
     *
     * @param {Authorization} authorization An Authorization for a function.
     * @param {Authorization} fee_authorization The authorization for the `credits.aleo/fee_public` or `credits.aleo/fee_private` function that pays the fee for the execution of the main function.
     * @param {boolean} broadcast Flag that indicates whether the remote proving service should attempt to submit the transaction on the caller's behalf.
     */
    static new(authorization: Authorization, fee_authorization: Authorization | null | undefined, broadcast: boolean): ProvingRequest;
    /**
     * Creates a left-endian byte representation of the ProvingRequest.
     */
    toBytesLe(): Uint8Array;
    /**
     * Creates a string representation of the ProvingRequest.
     */
    toString(): string;
}

/**
 * Encrypted Aleo record
 */
export class RecordCiphertext {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Clone the RecordCiphertext WASM object.
     *
     * @returns {RecordCiphertext} A clone of the RecordCiphertext WASM object.
     */
    clone(): RecordCiphertext;
    /**
     * Decrypt the record ciphertext into plaintext using the view key. The record will only
     * decrypt if the record was encrypted by the account corresponding to the view key
     *
     * @param {ViewKey} view_key View key used to decrypt the ciphertext
     * @returns {RecordPlaintext} Record plaintext object
     */
    decrypt(view_key: ViewKey): RecordPlaintext;
    /**
     * Decrypt the record ciphertext into plaintext using a record view key.
     *
     * @param {Field} record_vk Record view key used to decrypt the record.
     *
     * @returns {RecordPlaintext}
     */
    decryptWithRecordViewKey(record_vk: Field): RecordPlaintext;
    /**
     * Get a record ciphertext object from a series of bytes.
     *
     * @param {Uint8Array} bytes A left endian byte array representing the record ciphertext.
     *
     * @returns {RecordCiphertext}
     */
    static fromBytesLe(bytes: Uint8Array): RecordCiphertext;
    /**
     * Create a record ciphertext from a string
     *
     * @param {string} record String representation of a record ciphertext
     * @returns {RecordCiphertext} Record ciphertext
     */
    static fromString(record: string): RecordCiphertext;
    /**
     * Determines if the account corresponding to the view key is the owner of the record
     *
     * @param {ViewKey} view_key View key used to decrypt the ciphertext
     * @returns {boolean}
     */
    isOwner(view_key: ViewKey): boolean;
    /**
     * Get the record nonce.
     *
     * @returns {Group} The record nonce.
     */
    nonce(): Group;
    /**
     * Generate the record view key. The record view key can only decrypt record if the
     * supplied view key belongs to the record owner.
     *
     * @param {ViewKey} view_key View key used to generate the record view key
     *
     * @returns {Group} record view key
     */
    recordViewKey(view_key: ViewKey): Field;
    /**
     * Get the tag of the record using the graph key.
     *
     * @param {GraphKey} graph key of the account associatd with the record.
     * @param {Field} commitment of the record.
     *
     * @returns {Field} tag of the record.
     */
    static tag(graph_key: GraphKey, commitment: Field): Field;
    /**
     * Get the left endian boolean array representation of the record ciphertext bits.
     *
     * returns {Array} Left endian boolean array representation of the bits of the record ciphertext.
     */
    toBitsLe(): Array<any>;
    /**
     * Get the left endian byte array representation of the record ciphertext.
     *
     * @returns {Uint8Array} Left endian byte array representation of the record ciphertext.
     */
    toBytesLe(): Uint8Array;
    /**
     * Get the field array representation of the record ciphertext.
     *
     * @returns {Array} Field array representation of the record ciphertext.
     */
    toFields(): Array<any>;
    /**
     * Return the string representation of the record ciphertext
     *
     * @returns {string} String representation of the record ciphertext
     */
    toString(): string;
}

/**
 * Plaintext representation of an Aleo record
 */
export class RecordPlaintext {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Clone the RecordPlaintext WASM object.
     *
     * @returns {RecordPlaintext} A clone of the RecordPlaintext WASM object.
     */
    clone(): RecordPlaintext;
    commitment(program_id: string, record_name: string, record_view_key: string): Field;
    /**
     * Decrypt the sender ciphertext associated with the record.
     *
     * @param {ViewKey} view_key View key associated with the record.
     * @param {Field} sender_ciphertext Sender ciphertext associated with the record.
     *
     * @returns {Address} address of the sender.
     */
    decryptSender(view_key: ViewKey, sender_ciphertext: Field): Address;
    /**
     * Get a record plaintext object from a series of bytes.
     *
     * @param {Uint8Array} bytes A left endian byte array representing the record plaintext.
     *
     * @returns {RecordPlaintext} The record plaintext.
     */
    static fromBytesLe(bytes: Uint8Array): RecordPlaintext;
    /**
     * Return a record plaintext from a string.
     *
     * @param {string} record String representation of a plaintext representation of an Aleo record.
     *
     * @returns {RecordPlaintext} Record plaintext
     */
    static fromString(record: string): RecordPlaintext;
    /**
     * Get the record entry matching a key.
     *
     * @param {string} input The key to retrieve the value in the record data field.
     *
     * @returns {Plaintext} The plaintext value corresponding to the key.
     */
    getMember(input: string): Plaintext;
    /**
     * Returns the amount of microcredits in the record
     *
     * @returns {u64} Amount of microcredits in the record
     */
    microcredits(): bigint;
    /**
     * Returns the nonce of the record. This can be used to uniquely identify a record.
     *
     * @returns {string} Nonce of the record
     */
    nonce(): string;
    /**
     * Get the owner of the record.
     *
     * @returns {Address} Address of the owner of the record.
     */
    owner(): Address;
    /**
     * Generate the record view key. The record view key can only decrypt the record if the
     * supplied view key belongs to the record owner.
     *
     * @param {ViewKey} view_key View key used to generate the record view key
     *
     * @returns {Group} record view key
     */
    recordViewKey(view_key: ViewKey): Field;
    /**
     * Attempt to get the serial number of a record to determine whether or not is has been spent
     *
     * @param {PrivateKey} private_key Private key of the account that owns the record
     * @param {string} program_id Program ID of the program that the record is associated with
     * @param {string} record_name Name of the record
     * @param {string} record_view_key The string representation of the record view key.
     *
     * @returns {string} Serial number of the record
     */
    serialNumberString(private_key: PrivateKey, program_id: string, record_name: string, record_view_key: string): string;
    /**
     * Get the tag of the record using the graph key.
     */
    tag(graph_key: GraphKey, commitment: Field): Field;
    /**
     * Returns the left endian boolean array representation of the record plaintext bits.
     *
     * @returns {Array} Boolean array representation of the record plaintext bits.
     */
    toBitsLe(): Array<any>;
    /**
     * Returns the left endian byte array representation of the record plaintext.
     *
     * @returns {Uint8Array} Byte array representation of the record plaintext.
     */
    toBytesLe(): Uint8Array;
    /**
     * Get the field array representation of the record plaintext.
     */
    toFields(): Array<any>;
    /**
     * Get a representation of a record as a javascript object for usage in client side
     * computations. Note that this is not a reversible operation and exists for the convenience
     * of discovering and using properties of the record.
     *
     * The conversion guide is as follows:
     * - u8, u16, u32, i8, i16 i32 --> Number
     * - u64, u128, i64, i128 --> BigInt
     * - Address, Field, Group, Scalar --> String.
     *
     * Address, Field, Group, and Scalar will all be converted to their bech32 string
     * representation. These string representations can be converted back to their respective wasm
     * types using the fromString method on the Address, Field, Group, and Scalar objects in this
     * library.
     *
     * @example
     * # Create a wasm record from a record string.
     * let record_plaintext_wasm = RecordPlainext.from_string("{
     *   owner: aleo1kh5t7m30djl0ecdn4f5vuzp7dx0tcwh7ncquqjkm4matj2p2zqpqm6at48.private,
     *   metadata: {
     *     player1: aleo1kh5t7m30djl0ecdn4f5vuzp7dx0tcwh7ncquqjkm4matj2p2zqpqm6at48.private,
     *     player2: aleo1dreuxnmg9cny8ee9v2u0wr4v4affnwm09u2pytfwz0f2en2shgqsdsfjn6.private,
     *     nonce: 660310649780728486489183263981322848354071976582883879926426319832534836534field.private
     *   },
     *   id: 1953278585719525811355617404139099418855053112960441725284031425961000152405field.private,
     *   positions: 50794271u64.private,
     *   attempts: 0u64.private,
     *   hits: 0u64.private,
     *   _nonce: 5668100912391182624073500093436664635767788874314097667746354181784048204413group.public
     * }");
     *
     * let expected_object = {
     *   owner: "aleo1kh5t7m30djl0ecdn4f5vuzp7dx0tcwh7ncquqjkm4matj2p2zqpqm6at48",
     *   metadata: {
     *     player1: "aleo1kh5t7m30djl0ecdn4f5vuzp7dx0tcwh7ncquqjkm4matj2p2zqpqm6at48",
     *     player2: "aleo1dreuxnmg9cny8ee9v2u0wr4v4affnwm09u2pytfwz0f2en2shgqsdsfjn6",
     *     nonce: "660310649780728486489183263981322848354071976582883879926426319832534836534field"
     *   },
     *   id: "1953278585719525811355617404139099418855053112960441725284031425961000152405field",
     *   positions: 50794271,
     *   attempts: 0,
     *   hits: 0,
     *   _nonce: "5668100912391182624073500093436664635767788874314097667746354181784048204413group"
     * };
     *
     * # Create the expected object
     * let record_plaintext_object = record_plaintext_wasm.to_js_object();
     * assert(JSON.stringify(record_plaintext_object) == JSON.stringify(expected_object));
     *
     * @returns {Object} Javascript object representation of the record
     */
    toJsObject(): object;
    /**
     * Returns the record plaintext string
     *
     * @returns {string} String representation of the record plaintext
     */
    toString(): string;
}

/**
 * Scalar field element.
 */
export class Scalar {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Add two scalar elements.
     */
    add(other: Scalar): Scalar;
    /**
     * Clone the scalar element.
     */
    clone(): Scalar;
    /**
     * Divide two scalar elements.
     */
    divide(other: Scalar): Scalar;
    /**
     * Double the scalar element.
     */
    double(): Scalar;
    /**
     * Check if one scalar element equals another.
     */
    equals(other: Scalar): boolean;
    /**
     * Reconstruct a scalar element from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): Scalar;
    /**
     * Create a scalar element from a Uint8Array of left endian bytes.
     */
    static fromBytesLe(bytes: Uint8Array): Scalar;
    /**
     * Creates a scalar object from a string representation of a scalar element.
     */
    static fromString(group: string): Scalar;
    /**
     * Invert the scalar element.
     */
    inverse(): Scalar;
    /**
     * Multiply two scalar elements.
     */
    multiply(other: Scalar): Scalar;
    /**
     * Get the multiplicative identity of the scalar field.
     */
    static one(): Scalar;
    /**
     * Power of a scalar element.
     */
    pow(other: Scalar): Scalar;
    /**
     * Generate a random scalar element.
     */
    static random(): Scalar;
    /**
     * Subtract two scalar elements.
     */
    subtract(other: Scalar): Scalar;
    /**
     * Get the left endian boolean array representation of the scalar element.
     */
    toBitsLe(): Array<any>;
    /**
     * Encode the scalar element as a Uint8Array of left endian bytes.
     */
    toBytesLe(): Uint8Array;
    /**
     * Cast the scalar element to a field element.
     */
    toField(): Field;
    /**
     * Create a plaintext element from a scalar element.
     */
    toPlaintext(): Plaintext;
    /**
     * Returns the string representation of the scalar element.
     */
    toString(): string;
    /**
     * Get the additive identity of the scalar field.
     */
    static zero(): Scalar;
}

/**
 * Cryptographic signature of a message signed by an Aleo account
 */
export class Signature {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Get the challenge of a signature.
     */
    challenge(): Scalar;
    /**
     * Get a signature from a series of bits represented as a boolean array.
     *
     * @param {Array} bits A left endian boolean array representing the bits of the signature.
     *
     * @returns {Signature} The signature object.
     */
    static fromBitsLe(bits: Array<any>): Signature;
    /**
     * Get a signature from a series of bytes.
     *
     * @param {Uint8Array} bytes A left endian byte array representing the signature.
     *
     * @returns {Signature} The signature object.
     */
    static fromBytesLe(bytes: Uint8Array): Signature;
    /**
     * Get a signature from a string representation of a signature
     *
     * @param {string} signature String representation of a signature
     * @returns {Signature} Signature
     */
    static from_string(signature: string): Signature;
    /**
     * Get the response of a signature.
     */
    response(): Scalar;
    /**
     * Sign a message with a private key
     *
     * @param {PrivateKey} private_key The private key to sign the message with
     * @param {Uint8Array} message Byte representation of the message to sign
     * @returns {Signature} Signature of the message
     */
    static sign(private_key: PrivateKey, message: Uint8Array): Signature;
    /**
     * Sign an instance of a valid Aleo data type or record.
     *
     * @param {PrivateKey} private_key The private key used to sign the message.
     * @param {String} message The string representation of the Aleo datatype or record to sign.
     * @returns {Signature} Signature of the message.
     */
    static signValue(private_key: PrivateKey, message: string): Signature;
    /**
     * Get the left endian boolean array representation of the bits of the signature.
     */
    toBitsLe(): Array<any>;
    /**
     * Get the left endian byte array representation of the signature.
     */
    toBytesLe(): Uint8Array;
    /**
     * Get the field array representation of the signature.
     */
    toFields(): Array<any>;
    /**
     * Get the plaintext representation of the signature.
     */
    toPlaintext(): Plaintext;
    /**
     * Get an address from a signature.
     *
     * @returns {Address} Address object
     */
    to_address(): Address;
    /**
     * Get a string representation of a signature
     *
     * @returns {string} String representation of a signature
     */
    to_string(): string;
    /**
     * Verify a signature of a message with an address
     *
     * @param {Address} address The address to verify the signature with
     * @param {Uint8Array} message Byte representation of the message to verify
     * @returns {boolean} True if the signature is valid, false otherwise
     */
    verify(address: Address, message: Uint8Array): boolean;
    /**
     * Verify a signature over an Aleo datatype or record by an address.
     *
     * @param {Address} address The address used to verify the signature.
     * @param {String} message The message to verify, which must be the string representation of a valid Aleo datatype or record.
     * @returns {boolean} True if the signature is valid, false otherwise.
     */
    verifyValue(address: Address, message: string): boolean;
}

/**
 * Webassembly Representation of an Aleo transaction
 *
 * This object is created when generating an on-chain function deployment or execution and is the
 * object that should be submitted to the Aleo Network in order to deploy or execute a function.
 */
export class Transaction {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns the transaction's base fee.
     */
    baseFeeAmount(): bigint;
    /**
     * Returns true if the transaction contains the given commitment.
     *
     * @param {boolean} True if the transaction contains the given commitment.
     */
    constainsCommitment(commitment: Field): boolean;
    /**
     * Returns true if the transaction contains the given serial number.
     *
     * @param {boolean} True if the transaction contains the given serial number.
     */
    constainsSerialNumber(serial_number: Field): boolean;
    /**
     * Returns the program deployed within the transaction if the transaction is a deployment
     * transaction.
     *
     * @returns {Program | undefined} The program deployed within the transaction.
     */
    deployedProgram(): Program | undefined;
    /**
     * Returns the execution within the transaction (if present).
     *
     * @returns {Execution | undefined} The execution within the transaction.
     */
    execution(): Execution | undefined;
    /**
     * Returns the transaction's total fee.
     */
    feeAmount(): bigint;
    /**
     * Find a record in the transaction by the record's commitment.
     */
    findRecord(commitment: Field): RecordCiphertext | undefined;
    /**
     * Create a transaction from a Uint8Array of left endian bytes.
     *
     * @param {Uint8Array} Uint8Array of left endian bytes encoding a Transaction.
     * @returns {Transaction}
     */
    static fromBytesLe(bytes: Uint8Array): Transaction;
    /**
     * Create a transaction from a string
     *
     * @param {string} transaction String representation of a transaction
     * @returns {Transaction}
     */
    static fromString(transaction: string): Transaction;
    /**
     * Get the id of the transaction. This is the merkle root of the transaction's inclusion proof.
     *
     * This value can be used to query the status of the transaction on the Aleo Network to see
     * if it was successful. If successful, the transaction will be included in a block and this
     * value can be used to lookup the transaction data on-chain.
     *
     * @returns {string} TransactionId
     */
    id(): string;
    /**
     * Returns true if the transaction is a deployment transaction.
     *
     * @returns {boolean} True if the transaction is a deployment transaction
     */
    isDeploy(): boolean;
    /**
     * Returns true if the transaction is an execution transaction.
     *
     * @returns {boolean} True if the transaction is an execution transaction
     */
    isExecute(): boolean;
    /**
     * Returns true if the transaction is a fee transaction.
     *
     * @returns {boolean} True if the transaction is a fee transaction
     */
    isFee(): boolean;
    /**
     * Get the record plaintext present in a transaction owned by a specific view key.
     *
     * @param {ViewKey} view_key View key used to decrypt the ciphertext
     *
     * @returns {Array<RecordPlaintext>} Array of record plaintext objects
     */
    ownedRecords(view_key: ViewKey): Array<any>;
    /**
     * Returns the transaction's priority fee.
     *
     * returns {bigint} The transaction's priority fee.
     */
    priorityFeeAmount(): bigint;
    /**
     * Get the records present in a transaction and their commitments.
     *
     * @returns {Array<{commitment: Field, record: RecordCiphertext}>} Array of record ciphertext objects
     */
    records(): Array<any>;
    /**
     * Get a summary of the transaction within a javascript object.
     *
     * If the transaction is an execution transaction, this function will return a list of the
     * transitions and their inputs and outputs.
     *
     * If the transaction is a deployment transaction, this function will return the program id and
     * a list of the functions and their verifying keys, constraint, and variable counts.
     *
     * @param {boolean} convert_to_js If true the inputs and outputs will be converted to JS objects,
     * if false the inputs and outputs will be in wasm format.
     *
     * @returns {Object} Transaction summary
     */
    summary(convert_to_js: boolean): object;
    /**
     * Get the transaction as a Uint8Array of left endian bytes.
     *
     * @returns {Uint8Array} Uint8Array representation of the transaction
     */
    toBytesLe(): Uint8Array;
    /**
     * Get the transaction as a string. If you want to submit this transaction to the Aleo Network
     * this function will create the string that should be submitted in the `POST` data.
     *
     * @returns {string} String representation of the transaction
     */
    toString(): string;
    /**
     * Get the type of the transaction (will return "deploy" or "execute")
     *
     * @returns {string} Transaction type
     */
    transactionType(): string;
    /**
     * Get the transitions in a transaction.
     *
     * @returns {Array<Transition>} Array of transition objects
     */
    transitions(): Array<any>;
    /**
     * Get the verifying keys in a transaction.
     *
     * @returns {Array<Object>} Array of verifying keys.
     */
    verifyingKeys(): Array<any>;
}

export class Transition {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns true if the transition contains the given commitment.
     *
     * @param {boolean} True if the transition contains the given commitment.
     */
    containsCommitment(commitment: Field): boolean;
    /**
     * Check if the transition contains a serial number.
     *
     * @param {Field} serial_number The serial number to check for
     *
     * @returns {bool} True if the transition contains a serial number, false otherwise
     */
    containsSerialNumber(serial_number: Field): boolean;
    /**
     * Decrypt the transition using the transition view key.
     *
     * @param {Field} tvk The transition view key.
     *
     * @returns {Transition} The transition with public values for inputs and outputs.
     */
    decryptTransition(tvk: Field): Transition;
    /**
     * Find a record in the transition by the record's commitment.
     */
    findRecord(commitment: Field): RecordCiphertext | undefined;
    /**
     * Create a transition from a Uint8Array of left endian bytes.
     *
     * @param {Uint8Array} Uint8Array of left endian bytes encoding a Transition.
     * @returns {Transition}
     */
    static fromBytesLe(bytes: Uint8Array): Transition;
    /**
     * Create a transition from a string
     *
     * @param {string} transition String representation of a transition
     * @returns {Transition}
     */
    static fromString(transition: string): Transition;
    /**
     * Get the function name of the transition.
     */
    functionName(): string;
    /**
     * Get the transition ID
     *
     * @returns {string} The transition ID
     */
    id(): string;
    /**
     * Get the inputs of the transition.
     *
     * @param {bool} convert_to_js If true the inputs will be converted to JS objects, if false
     * the inputs will be in wasm format.
     *
     * @returns {Array} Array of inputs
     */
    inputs(convert_to_js: boolean): Array<any>;
    /**
     * Get the outputs of the transition.
     *
     * @param {bool} convert_to_js If true the outputs will be converted to JS objects, if false
     * the outputs will be in wasm format.
     *
     * @returns {Array} Array of outputs
     */
    outputs(convert_to_js: boolean): Array<any>;
    /**
     * Get the record plaintext present in a transition owned by a specific view key.
     *
     * @param {ViewKey} view_key The view key of the record owner.
     *
     * @returns {Array<RecordPlaintext>} Array of record plaintext objects
     */
    ownedRecords(view_key: ViewKey): Array<any>;
    /**
     * Get the program ID of the transition.
     */
    programId(): string;
    /**
     * Get the records present in a transition and their commitments.
     *
     * @returns {Array<{commitment: Field, record: RecordCiphertext}>} Array of record ciphertext objects
     */
    records(): Array<any>;
    /**
     * Get the transition signer commitment of the transition.
     *
     * @returns {Field} Transition signer commitment
     */
    scm(): Field;
    /**
     * Get the transition commitment of the transition.
     *
     * @returns {Field} Transition commitment
     */
    tcm(): Field;
    /**
     * Get the transition as a Uint8Array of left endian bytes.
     *
     * @returns {Uint8Array} Uint8Array representation of the transition
     */
    toBytesLe(): Uint8Array;
    /**
     * Get the transition as a string. If you want to submit this transition to the Aleo Network
     * this function will create the string that should be submitted in the `POST` data.
     *
     * @returns {string} String representation of the transition
     */
    toString(): string;
    /**
     * Get the transition public key of the transition.
     *
     * @returns {Group} Transition public key
     */
    tpk(): Group;
    /**
     * Get the transition view key of the transition.
     *
     * @param {ViewKey} view_key The view key of the transition signer.
     *
     * @returns {Field} Transition view key
     */
    tvk(view_key: ViewKey): Field;
}

export class U128 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): U128;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): U128;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: U128): U128;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): U128;
    /**
     * Wrapped division.
     */
    divWrapped(other: U128): U128;
    /**
     * Check equality with another integer.
     */
    equals(other: U128): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): U128;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): U128;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): U128;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): U128;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): U128;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: U128): U128;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): U128;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): U128;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): U128;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): U128;
    /**
     * Get the remainder from integer division.
     */
    rem(other: U128): U128;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: U128): U128;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: U128): U128;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

export class U16 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): U16;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): U16;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: U16): U16;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): U16;
    /**
     * Wrapped division.
     */
    divWrapped(other: U16): U16;
    /**
     * Check equality with another integer.
     */
    equals(other: U16): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): U16;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): U16;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): U16;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): U16;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): U16;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: U16): U16;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): U16;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): U16;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): U16;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): U16;
    /**
     * Get the remainder from integer division.
     */
    rem(other: U16): U16;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: U16): U16;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: U16): U16;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

export class U32 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): U32;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): U32;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: U32): U32;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): U32;
    /**
     * Wrapped division.
     */
    divWrapped(other: U32): U32;
    /**
     * Check equality with another integer.
     */
    equals(other: U32): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): U32;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): U32;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): U32;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): U32;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): U32;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: U32): U32;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): U32;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): U32;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): U32;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): U32;
    /**
     * Get the remainder from integer division.
     */
    rem(other: U32): U32;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: U32): U32;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: U32): U32;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

export class U64 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): U64;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): U64;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: U64): U64;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): U64;
    /**
     * Wrapped division.
     */
    divWrapped(other: U64): U64;
    /**
     * Check equality with another integer.
     */
    equals(other: U64): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): U64;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): U64;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): U64;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): U64;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): U64;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: U64): U64;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): U64;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): U64;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): U64;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): U64;
    /**
     * Get the remainder from integer division.
     */
    rem(other: U64): U64;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: U64): U64;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: U64): U64;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

export class U8 {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Checked absolute value.
     */
    absChecked(): U8;
    /**
     * Wrapped absolute value.
     */
    absWrapped(): U8;
    /**
     * Wrapped addition with another integer.
     */
    addWrapped(other: U8): U8;
    /**
     * Clone the integer in wasm memory.
     */
    clone(): U8;
    /**
     * Wrapped division.
     */
    divWrapped(other: U8): U8;
    /**
     * Check equality with another integer.
     */
    equals(other: U8): boolean;
    /**
     * Construct an integer from a boolean array representation.
     */
    static fromBitsLe(bits: Array<any>): U8;
    /**
     * Get the byte array representation of the integer.
     */
    static fromBytesLe(bytes: Uint8Array): U8;
    /**
     * Attempt to construct the integer from a field element.
     */
    static fromField(field: Field): U8;
    /**
     * Atttempt to construct the integer from a list of field elements.
     */
    static fromFields(fields: Array<any>): U8;
    /**
     * Construct an integer from a string representation.
     */
    static fromString(s: string): U8;
    /**
     * Wrapped multiplication with another integer.
     */
    mulWrapped(other: U8): U8;
    /**
     * Negate the integer (e.g., 5 → -5).
     */
    neg(): U8;
    /**
     * Exponentiate the integer with a u16 exponent.
     */
    powU16(exponent: U16): U8;
    /**
     * Exponentiate the integer with a u32 exponent.
     */
    powU32(exponent: U32): U8;
    /**
     * Exponentiate the integer with a u8 exponent.
     */
    powU8(exponent: U8): U8;
    /**
     * Get the remainder from integer division.
     */
    rem(other: U8): U8;
    /**
     * Get the remainder from an integer division which wraps if there's an overflow.
     */
    remWrapped(other: U8): U8;
    /**
     * Wrapped subtraction with another integer.
     */
    subWrapped(other: U8): U8;
    /**
     * Get the boolean array representation of the integer.
     */
    toBitsLe(): Array<any>;
    /**
     * Construct an integer from a byte array representation.
     */
    toBytesLe(): Uint8Array;
    /**
     * Convert the integer to the Plaintext type. This must be done before hashing an integer to ensure it matches hashes with a leo/aleo program.
     */
    toPlaintext(): Plaintext;
    /**
     * Convert the integer to a Scalar value.
     */
    toScalar(): Scalar;
    /**
     * Get the string representation of the integer.
     */
    toString(): string;
}

/**
 * Verifying key for a function within an Aleo program
 */
export class VerifyingKey {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Returns the verifying key for the bond_public function
     *
     * @returns {VerifyingKey} Verifying key for the bond_public function
     */
    static bondPublicVerifier(): VerifyingKey;
    /**
     * Returns the verifying key for the bond_validator function
     *
     * @returns {VerifyingKey} Verifying key for the bond_validator function
     */
    static bondValidatorVerifier(): VerifyingKey;
    /**
     * Get the checksum of the verifying key
     *
     * @returns {string} Checksum of the verifying key
     */
    checksum(): string;
    /**
     * Returns the verifying key for the claim_delegator function
     *
     * @returns {VerifyingKey} Verifying key for the claim_unbond_public function
     */
    static claimUnbondPublicVerifier(): VerifyingKey;
    /**
     * Create a copy of the verifying key
     *
     * @returns {VerifyingKey} A copy of the verifying key
     */
    copy(): VerifyingKey;
    /**
     * Returns the verifying key for the fee_private function
     *
     * @returns {VerifyingKey} Verifying key for the fee_private function
     */
    static feePrivateVerifier(): VerifyingKey;
    /**
     * Returns the verifying key for the fee_public function
     *
     * @returns {VerifyingKey} Verifying key for the fee_public function
     */
    static feePublicVerifier(): VerifyingKey;
    /**
     * Construct a new verifying key from a byte array
     *
     * @param {Uint8Array} bytes Byte representation of a verifying key
     * @returns {VerifyingKey}
     */
    static fromBytes(bytes: Uint8Array): VerifyingKey;
    /**
     * Create a verifying key from string
     *
     * @param {String} string String representation of a verifying key
     * @returns {VerifyingKey}
     */
    static fromString(string: string): VerifyingKey;
    /**
     * Returns the verifying key for the inclusion function
     *
     * @returns {VerifyingKey} Verifying key for the inclusion function
     */
    static inclusionVerifier(): VerifyingKey;
    /**
     * Returns the verifying key for the bond_public function
     *
     * @returns {VerifyingKey} Verifying key for the bond_public function
     */
    isBondPublicVerifier(): boolean;
    /**
     * Returns the verifying key for the bond_validator function
     *
     * @returns {VerifyingKey} Verifying key for the bond_validator function
     */
    isBondValidatorVerifier(): boolean;
    /**
     * Verifies the verifying key is for the claim_delegator function
     *
     * @returns {bool}
     */
    isClaimUnbondPublicVerifier(): boolean;
    /**
     * Verifies the verifying key is for the fee_private function
     *
     * @returns {bool}
     */
    isFeePrivateVerifier(): boolean;
    /**
     * Verifies the verifying key is for the fee_public function
     *
     * @returns {bool}
     */
    isFeePublicVerifier(): boolean;
    /**
     * Verifies the verifying key is for the inclusion function
     *
     * @returns {bool}
     */
    isInclusionVerifier(): boolean;
    /**
     * Verifies the verifying key is for the join function
     *
     * @returns {bool}
     */
    isJoinVerifier(): boolean;
    /**
     * Verifies the verifying key is for the set_validator_state function
     *
     * @returns {bool}
     */
    isSetValidatorStateVerifier(): boolean;
    /**
     * Verifies the verifying key is for the split function
     *
     * @returns {bool}
     */
    isSplitVerifier(): boolean;
    /**
     * Verifies the verifying key is for the transfer_private_to_public function
     *
     * @returns {bool}
     */
    isTransferPrivateToPublicVerifier(): boolean;
    /**
     * Verifies the verifying key is for the transfer_private function
     *
     * @returns {bool}
     */
    isTransferPrivateVerifier(): boolean;
    /**
     * Verifies the verifying key is for the transfer_public_as_signer function
     *
     * @returns {bool}
     */
    isTransferPublicAsSignerVerifier(): boolean;
    /**
     * Verifies the verifying key is for the transfer_public_to_private function
     *
     * @returns {bool}
     */
    isTransferPublicToPrivateVerifier(): boolean;
    /**
     * Verifies the verifying key is for the transfer_public function
     *
     * @returns {bool}
     */
    isTransferPublicVerifier(): boolean;
    /**
     * Verifies the verifying key is for the unbond_public function
     *
     * @returns {bool}
     */
    isUnbondPublicVerifier(): boolean;
    /**
     * Returns the verifying key for the join function
     *
     * @returns {VerifyingKey} Verifying key for the join function
     */
    static joinVerifier(): VerifyingKey;
    /**
     * Get the number of constraints associated with the circuit
     *
     * @returns {number} The number of constraints
     */
    numConstraints(): number;
    /**
     * Returns the verifying key for the set_validator_state function
     *
     * @returns {VerifyingKey} Verifying key for the set_validator_state function
     */
    static setValidatorStateVerifier(): VerifyingKey;
    /**
     * Returns the verifying key for the split function
     *
     * @returns {VerifyingKey} Verifying key for the split function
     */
    static splitVerifier(): VerifyingKey;
    /**
     * Create a byte array from a verifying key
     *
     * @returns {Uint8Array} Byte representation of a verifying key
     */
    toBytes(): Uint8Array;
    /**
     * Get a string representation of the verifying key
     *
     * @returns {String} String representation of the verifying key
     */
    toString(): string;
    /**
     * Returns the verifying key for the transfer_private_to_public function
     *
     * @returns {VerifyingKey} Verifying key for the transfer_private_to_public function
     */
    static transferPrivateToPublicVerifier(): VerifyingKey;
    /**
     * Returns the verifying key for the transfer_private function
     *
     * @returns {VerifyingKey} Verifying key for the transfer_private function
     */
    static transferPrivateVerifier(): VerifyingKey;
    /**
     * Returns the verifying key for the transfer_public_as_signer function
     *
     * @returns {VerifyingKey} Verifying key for the transfer_public_as_signer function
     */
    static transferPublicAsSignerVerifier(): VerifyingKey;
    /**
     * Returns the verifying key for the transfer_public_to_private function
     *
     * @returns {VerifyingKey} Verifying key for the transfer_public_to_private function
     */
    static transferPublicToPrivateVerifier(): VerifyingKey;
    /**
     * Returns the verifying key for the transfer_public function
     *
     * @returns {VerifyingKey} Verifying key for the transfer_public function
     */
    static transferPublicVerifier(): VerifyingKey;
    /**
     * Returns the verifying key for the unbond_public function
     *
     * @returns {VerifyingKey} Verifying key for the unbond_public function
     */
    static unbondPublicVerifier(): VerifyingKey;
}

export class ViewKey {
    private constructor();
    free(): void;
    [Symbol.dispose](): void;
    /**
     * Decrypt a record ciphertext with a view key
     *
     * @param {string} ciphertext String representation of a record ciphertext
     * @returns {string} String representation of a record plaintext
     */
    decrypt(ciphertext: string): string;
    /**
     * Create a new view key from a private key
     *
     * @param {PrivateKey} private_key Private key
     * @returns {ViewKey} View key
     */
    static from_private_key(private_key: PrivateKey): ViewKey;
    /**
     * Create a new view key from a string representation of a view key
     *
     * @param {string} view_key String representation of a view key
     * @returns {ViewKey} View key
     */
    static from_string(view_key: string): ViewKey;
    /**
     * Cast the view key to a field.
     */
    toField(): Field;
    /**
     * Get the address corresponding to a view key
     *
     * @returns {Address} Address
     */
    to_address(): Address;
    /**
     * Get the underlying scalar of a view key.
     */
    to_scalar(): Scalar;
    /**
     * Get a string representation of a view key
     *
     * @returns {string} String representation of a view key
     */
    to_string(): string;
}

/**
 * Set test consensus version heights for testing.
 *
 * @param {string | undefined} heights The block heights at which each consensus version applies. This input should be a simple csv list of block heights and there should be one number for each consensus version. If left undefined, the default test heights will be applied.
 *
 * @example
 * import { getOrInitConsensusVersionHeights } from @provablehq/sdk;
 *
 * Set the consensus version heights.
 * getOrInitConsensusVersionTestHeights("0,1,2,3,4,5,6,7,8,9");
 */
export function getOrInitConsensusVersionTestHeights(heights?: string | null): Array<any>;

export function initThreadPool(url: URL, num_threads: number): Promise<void>;

export function runRayonThread(receiver: number): void;

/**
 * Verify an execution. Executions with multiple transitions must have the program source code and
 * verifying keys of imported functions supplied from outside to correctly verify. Also, this does
 * not verify that the state root of the execution is included in the Aleo Network ledger.
 *
 * @param {Execution} execution The function execution to verify
 * @param {VerifyingKey} verifying_key The verifying key for the function
 * @param {Program} program The program that the function execution belongs to
 * @param {String} function_id The name of the function that was executed
 * @param {Object} imports The imports for the program in the form of { "program_id.aleo":"source code", ... }
 * @param {Object} import_verifying_keys The verifying keys for the imports in the form of { "program_id.aleo": [["function, "verifying_key"], ...],  ...}
 * @returns {boolean} True if the execution is valid, false otherwise
 */
export function verifyFunctionExecution(execution: Execution, verifying_key: VerifyingKey, program: Program, function_id: string, imports: object | null | undefined, imported_verifying_keys: object | null | undefined, block_height: number): boolean;