import { providers } from 'ethers'; import BaseService from '../commons/BaseService'; import { EthereumTransactionTypeExtended, LendingPoolMarketConfig, tEthereumAddress } from '../commons/types'; import { MockTokenFaucet } from './typechain/MockTokenFaucet'; export declare type FaucetParamsType = { userAddress: tEthereumAddress; }; export interface FaucetInterface { mint: (args: FaucetParamsType) => EthereumTransactionTypeExtended[]; } export declare class FaucetService extends BaseService implements FaucetInterface { readonly faucetAddress: string; readonly faucetConfig: LendingPoolMarketConfig | undefined; constructor(provider: providers.Provider, faucetAddress?: string); mint({ userAddress }: FaucetParamsType): EthereumTransactionTypeExtended[]; } //# sourceMappingURL=index.d.ts.map