import type { AuthorityDelegationBodyV1, AuthorityDelegationV1 } from './types.js'; /** Create a deterministic v1 record from explicit body fields and an Ed25519 key. */ export declare function issueAuthorityDelegation(body: AuthorityDelegationBodyV1, privateKey: string): AuthorityDelegationV1; /** * Issue a child after immediate-parent attenuation checks. The caller must first * validate the complete parent chain and revocation state; this pure primitive * cannot establish live ancestor status by itself. */ export declare function issueSubAuthorityDelegation(parent: AuthorityDelegationV1, body: AuthorityDelegationBodyV1, privateKey: string): AuthorityDelegationV1; //# sourceMappingURL=issue.d.ts.map