import { BigNumber } from 'ethers';
import { BaseStakingContractAdapter, StakingAsset } from '../staking.js';
export declare class RivalBearsStakingContractAdapter extends BaseStakingContractAdapter {
    private contract;
    /**
     * The contract address
     */
    contractAddress: string;
    /**
     * The chain the assets exist on
     */
    chainId: number;
    /**
     * Assets that can be staked to this contract
     */
    supportedAssets: StakingAsset[];
    constructor();
    /**
     * Get staked token ids for the given owner
     * @param owner - Owner address
     * @returns
     */
    getStakedTokenIds(owner: string, name?: string): Promise<BigNumber[]>;
    /**
     * Get staked token balance for the given owner
     * @param owner - Owner address
     * @returns
     */
    getStakedTokenBalance(owner: string, assetName?: string): Promise<BigNumber>;
}
