import { Api } from "../../types"; import { Store } from "@equilab/utils"; import { HTTPRequestBody, Cache } from "../../types/common"; export interface LockdropParams extends HTTPRequestBody { namespace: "lockdrop"; } export declare const isLockdrop: (body: HTTPRequestBody) => body is LockdropParams; export declare const createLockdropFilter: (api: Api, db: Store, cache: Cache) => (body: LockdropParams) => Promise;