import { BarterProviderType } from '../types/paramTypes';
export declare class VaultToken {
private readonly contract;
private readonly provider;
constructor(contractAddress: string, signerOrProvider: BarterProviderType);
getVaultBalance(chainId: string): Promise<string>;
}