//#region src/integrity.d.ts interface SriUrlOptions { resolveEntryUrl?: boolean; maxBytes?: number; } declare function computeSriHash(content: string | Buffer): string; declare function computeSriHashForUrl(url: string, options?: SriUrlOptions): Promise; declare function resolveEntryUrl(url: string): string; declare function verifySriForUrl(url: string, expectedIntegrity: string, options?: SriUrlOptions): Promise; declare class IntegrityRegistry { private hashes; register(url: string, integrity: string): void; registerEntry(baseUrl: string, integrity: string): void; get(url: string): string | undefined; has(url: string): boolean; entries(): IterableIterator<[string, string]>; } declare function verifyConfigAgainstChain(localConfig: Record, bosUrl: string): Promise<{ verified: boolean; mismatches: string[]; }>; interface DeployResultEntry { url: string; integrity?: string; urlField: string; integrityField?: string; } declare function reportDeployResult(opts: { url: string; integrity?: string | null; bosConfigPath: string; urlField: string; integrityField?: string; }): void; declare function parseDeployLines(output: string): DeployResultEntry[]; declare function applyDeployResults(config: Record, results: DeployResultEntry[]): Record; declare function findPluginKey(bosConfigPath: string, pluginDir: string): string | null; //#endregion export { DeployResultEntry, IntegrityRegistry, applyDeployResults, computeSriHash, computeSriHashForUrl, findPluginKey, parseDeployLines, reportDeployResult, resolveEntryUrl, verifyConfigAgainstChain, verifySriForUrl }; //# sourceMappingURL=integrity.d.mts.map