import { NetworkDescriptorV2, ResourceFenceV2 } from "./v2.js"; export type AuthenticatedResourceFenceEntryV2 = Readonly<{ entryBytes: Uint8Array; entryCid: string; digest: Uint8Array; body: ResourceFenceV2; gid: string; metaData?: Uint8Array; directParents: ReadonlyArray>; }>; export type AuthenticateResourceFenceEntryV2Properties = Readonly<{ entryBytes: Uint8Array; descriptor: NetworkDescriptorV2; expectedResourceId: Uint8Array; expectedGid: string; }>; /** * Authenticate a raw resource-fence EntryV0 against immutable resource * context. The returned token does not prove policy acceptance, causal * ancestry, fork freedom, freshness, or durability. */ export declare const authenticateResourceFenceEntryV2: ({ entryBytes, descriptor, expectedResourceId, expectedGid, }: AuthenticateResourceFenceEntryV2Properties) => Promise; //# sourceMappingURL=v2-resource-fence-entry.d.ts.map