import { Instruction, Value } from ".."; export type Bytes = Uint8Array | string; export declare const resolveBytes: (bytes: Bytes) => Uint8Array; export declare const resolveBytesAndCheckLength: (bytes: Bytes, expectedLength: number) => Uint8Array; export declare const destructManifestValueTuple: (value: Value) => Value[]; export declare const isLockFeeCallMethod: (instruction: Extract, faucetComponentAddress: string) => Promise; export declare const isFreeXrdCallMethod: (instruction: Extract, faucetComponentAddress: string) => Promise; export declare const isAccountWithdrawCallMethod: (instruction: Extract) => Promise; export declare const isAccountDepositCallMethod: (instruction: Extract) => Promise; export declare const castValue: (value: Value, kind: T) => Extract;