import type { ObjectRef } from '../types/index.js'; export declare function addressToBytes(address: string): Uint8Array; export declare function bytesToAddress(bytes: Uint8Array | number[]): string; export declare function stringToBytes(str: string): Uint8Array; export declare function bytesToString(bytes: Uint8Array | number[]): string; export declare function packObjectRef(ref: ObjectRef): Uint8Array; export declare function hexToBytes(hex: string): Uint8Array; export declare function bytesToHex(bytes: Uint8Array | number[], prefix?: boolean): string; export declare function arrayToBytes(arr: number[]): Uint8Array; export declare function bytesToArray(bytes: Uint8Array): number[]; //# sourceMappingURL=converters.d.ts.map