export declare const SOURCE_BOUNDARY_PACK_SCHEMA: 'doppler.source-boundary-pack/v1'; export declare const RUNTIME_BOUNDARY_CAPTURE_SCHEMA: 'doppler.runtime-boundary-capture/v1'; export declare const BOUNDARY_COMPARISON_RECEIPT_SCHEMA: 'doppler.boundary-comparison-receipt/v1'; export declare const DETERMINISTIC_TOKEN_EVIDENCE_SCHEMA: 'doppler.deterministic-token-evidence/v1'; export declare const BOUNDARY_PROVIDER_CAPTURE_SCHEMA: 'doppler.boundary-provider-capture/v1'; export interface BoundaryEvidence { boundaryId: string; phase: string | null; tokenIndex: number | null; layerIndex: number | null; occurrence?: number; shape: number[]; dtype: string; samples: Array<{ coordinate: number[]; flatIndex: number; value: number }>; fullTensorDigest: string; statistics: Record; tolerancePolicyId: string; } export declare function buildRuntimeBoundaryCapture(options: { report: unknown; policy: Record; tolerancePolicyId?: string; identity?: Record; }): Record; export declare function buildSourceBoundaryPack(options: { identity: Record; boundaries: BoundaryEvidence[]; }): Record; export declare function buildSourceBoundaryPackFromProviderCapture( capture: Record ): Record; export declare function buildDeterministicTokenEvidenceFromReferenceTranscript( transcript: Record ): Record; export declare function compareBoundaryEvidence(options: { sourcePack: Record; runtimeCapture: Record; policy: Record; artifactPrecision?: 'source' | 'quantized'; sourcePrecisionControlReceipt?: Record | null; deterministicTokenEvidence?: { exact: boolean; tokenCount: number } | null; }): Record;