import { Transfer, Store } from "@equilab/utils"; import { ExplorerParams } from "./"; export interface TransferParams extends ExplorerParams<{ address: string; }> { method: "transfers"; } export declare const isTransfer: (body: ExplorerParams) => body is TransferParams; export declare const createTransferFilter: (store: Store) => ({ payload: { address } }: TransferParams) => Promise[]>;