import { CwiError } from "cwi-base"; /** * Unlocking script for vin ${vin} (${txid}.${vout}) of new transaction is invalid. */ export declare class ERR_NINJA_INVALID_UNLOCK extends CwiError { vin: number; txid: string; vout: number; signedRawTx: string; e?: CwiError | undefined; constructor(vin: number, txid: string, vout: number, signedRawTx: string, e?: CwiError | undefined); } /** * Unlocking script for vin ${vin} of new transaction is invalid. */ export declare class ERR_NINJA_MISSING_UNLOCK extends CwiError { constructor(vin: number); } //# sourceMappingURL=ERR_NINJA_errors.d.ts.map