import type { SerializedBundle } from '@sigstore/bundle'; export type Subject = { name: string; digest: Record; }; export type Predicate = { type: string; params: object; }; export type Attestation = { bundle: SerializedBundle; certificate: string; tlogID?: string; attestationID?: string; };