import type { Hash } from '@ariestools/sdk'; import type { BoundWitness } from '@xyo-network/sdk'; /** Debug state for a parsed bound witness including hashes, errors, and validity. */ export interface DebugBoundWitnessState { boundWitness?: BoundWitness; dataHash?: Hash; errors: Error[]; rootHash?: Hash; valid: boolean; } /** Parses and validates JSON bound witness input for debugging. */ export declare const useDebugBoundWitness: (input?: string) => DebugBoundWitnessState; //# sourceMappingURL=useDebugBoundWitness.d.ts.map