import { GasFreeError } from './GasFreeError'; export declare class ConsignmentVerificationError extends GasFreeError { readonly verificationErrors?: string[]; readonly txid?: string; constructor(message: string, verificationErrors?: string[], txid?: string, originalError?: Error); static verificationFailed(errors: string[], txid?: string): ConsignmentVerificationError; static invalidConsignment(reason: string, txid?: string): ConsignmentVerificationError; static missingConsignment(txid: string): ConsignmentVerificationError; toJSON(): Record; } //# sourceMappingURL=ConsignmentVerificationError.d.ts.map