import { BitGoBase, CoinConstructor, NamedCoinConstructor, VerifyTransactionOptions } from '@bitgo/sdk-core'; import { Nep141TokenConfig } from '@bitgo/statics'; import { Near } from './near'; export declare class Nep141Token extends Near { readonly tokenConfig: Nep141TokenConfig; constructor(bitgo: BitGoBase, tokenConfig: Nep141TokenConfig); static createTokenConstructor(config: Nep141TokenConfig): CoinConstructor; static createTokenConstructors(tokenConfig?: Nep141TokenConfig[]): NamedCoinConstructor[]; get name(): string; get coin(): string; get contractAddress(): string; get decimalPlaces(): number; get storageDepositAmount(): string; getChain(): string; getBaseChain(): string; getFullName(): string; getBaseFactor(): number; verifyTransaction(params: VerifyTransactionOptions): Promise; } //# sourceMappingURL=nep141Token.d.ts.map