export interface ComputeUnclaimUdsParams { firstEligibleUd: number; pastReevals: Array<[number, bigint]>; currentUdIndex: number; } /** * Compute the unclaimed UDs * @param params - The parameters object * @param params.firstEligibleUd - The first eligible UD index (data in the Identity module) * @param params.pastReevals - The past reevals * @param params.currentUdIndex - The current UD index * @returns The unclaimed UDs */ export declare function computeUnclaimUds({ firstEligibleUd, pastReevals, currentUdIndex, }: ComputeUnclaimUdsParams): number;