import type { IBackupArchiveManifest, TIsolatedRestoreResourceMapping } from './backup.js'; import type { IIsolatedRestoreGrantClaims } from './isolatedrestore.js'; export interface IIsolatedRestoreCanonicalDigestGoldenVector { input: TInput; canonicalJson: string; sha256: string; } /** * Portable fixed values for signer, relay, and verifier suites. The inputs * deliberately cover an astral scalar, composed and decomposed accents, a * quote, and a backslash. Consumers compare both JSON and SHA-256 verbatim. */ export declare const isolatedRestoreCanonicalDigestGoldenVectors: { version: 1; resourceMappings: IIsolatedRestoreCanonicalDigestGoldenVector; archiveManifest: IIsolatedRestoreCanonicalDigestGoldenVector; grantClaims: IIsolatedRestoreCanonicalDigestGoldenVector; };