import { BusModule } from './bus-module.js'; import type { RequestStatusWithId, GetPendingRequestsInfoReturnType, PropsWithAccount, GetClaimableRequestsETHByAccountReturnType, GetClaimableRequestsInfoReturnType, GetWithdrawalRequestsInfoReturnType } from './types.js'; export declare class LidoSDKWithdrawRequestsInfo extends BusModule { getWithdrawalRequestsInfo(props: PropsWithAccount): Promise; getWithdrawalRequestsStatus(props: PropsWithAccount): Promise; getClaimableRequestsInfo(props: PropsWithAccount): Promise; getClaimableRequestsETHByIds(props: { claimableRequestsIds: (bigint | RequestStatusWithId)[]; }): Promise<{ ethByRequests: readonly bigint[]; ethSum: bigint; hints: readonly bigint[]; }>; getClaimableRequestsETHByAccount(props: PropsWithAccount): Promise; getPendingRequestsInfo(props: PropsWithAccount): Promise; } //# sourceMappingURL=withdraw-requests-info.d.ts.map