import { FundAccountJsonRpcRequest } from "../interfaces/default"; import { TypeRegistry } from "@polkadot/types"; import { Constructor } from "@polkadot/types/types"; import { AccountId } from "@polkadot/types/interfaces"; import { JsonRpcClient } from "./client"; /** * @category Clients */ export declare class FaucetClient extends JsonRpcClient { registry: TypeRegistry; constr: { FundAccountJsonRpcRequest: Constructor; }; constructor(url: string); fundAccount(account: AccountId): Promise; }