import { BusModule } from './bus-module.js'; import { type RequestStatusWithId } from './types.js'; import { type AccountValue } from '../core/index.js'; export declare class LidoSDKWithdrawViews extends BusModule { getWithdrawalRequestsIds(props: { account?: AccountValue; }): Promise; getLastCheckpointIndex(): Promise; getWithdrawalStatus(props: { requestsIds: readonly bigint[]; }): Promise; findCheckpointHints(props: { sortedIds: bigint[]; firstIndex?: bigint; lastIndex?: bigint; }): Promise; getClaimableEther(props: { sortedIds: bigint[]; hints: readonly bigint[]; }): Promise; getUnfinalizedStETH(): Promise; minStethWithdrawalAmount(): Promise; minWStethWithdrawalAmount(): Promise; maxStethWithdrawalAmount(): Promise; maxWStethWithdrawalAmount(): Promise; isPaused(): Promise; isBunkerModeActive(): Promise; isTurboModeActive(): Promise; } //# sourceMappingURL=withdraw-views.d.ts.map