import { Api, ChainApiTypes } from "@equilab/api"; import { Currency } from "@equilab/api/equilibrium"; import { Filter } from "@equilab/utils"; import { KeyringPair } from "@polkadot/keyring/types"; import { HTTPRequestBody } from "../../types/common"; interface Payload { address: string; currency: Currency; amount?: string; } export interface FaucetGiveParams extends HTTPRequestBody { namespace: "faucet"; method: "give"; } export declare const isFaucetGive: (body: HTTPRequestBody) => body is FaucetGiveParams; export declare const createFaucetGiveFilter: (api: Api, pair: KeyringPair, status: Map) => Filter; export {};