import { BigNumber } from 'ethers';
import { BaseStakingContractAdapter, StakingAsset } from '../staking.js';
export declare class BibizStakingContractAdapter extends BaseStakingContractAdapter {
    /**
     * The contract address
     */
    contractAddress: string;
    /**
     * Assets that can be staked to this contract
     */
    supportedAssets: StakingAsset[];
    /**
     * Get staked token ids for the given owner
     * @param owner - Owner address
     * @returns
     */
    getStakedTokenIds(owner: string): Promise<BigNumber[]>;
}
