/** * Manages ACME replay nonces. * Each nonce is single-use: consumed on verification, fresh one issued with every response. */ export declare class NonceManager { private nonces; private nonceQueue; private maxSize; constructor(maxSize?: number); generate(): string; consume(nonce: string): boolean; }