import { Utxo } from "@avalabs/avalanchejs"; /** * Get a Utxo from a buffer or hex string * @param utxoBytesOrHex - The buffer or hex string to get the Utxo from `string` or `Uint8Array` * @param chainAlias - The chain alias to get the Utxo from `"P" | "X" | "C"` * @returns The Utxo {@link Utxo} * * @example * ```ts * import { getUtxoFromBytes } from "@avalanche-sdk/client/utils"; * * const utxo = getUtxoFromBytes("0x1234567890abcdef", "P"); * ``` */ export declare function getUtxoFromBytes(utxoBytesOrHex: string | Uint8Array, chainAlias: "P" | "X" | "C"): Utxo; //# sourceMappingURL=getUtxoFromBytes.d.ts.map