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;
};
//# sourceMappingURL=types.d.ts.map