import type { Address } from 'viem'; import type { CommonTransactionProps, EtherValue } from '../core/types.js'; export type SharesTransferProps = CommonTransactionProps & { from?: Address; to: Address; amount: EtherValue; }; export type SharesTotalSupplyResult = { totalShares: bigint; totalEther: bigint; }; export type SharesAmountWithRoundUp = { amount: EtherValue; roundUp?: boolean; }; export type BatchSharesToStethValue = EtherValue | SharesAmountWithRoundUp; //# sourceMappingURL=types.d.ts.map