import { Store } from "@equilab/utils"; import { LockdropParams } from "."; import { Api } from "../../types"; import { Cache } from "../../types/common"; export interface StartStakeParams extends LockdropParams<{}> { method: "start-stake"; } export declare const isStartStake: (body: LockdropParams) => body is StartStakeParams; export declare const createStartStakeFilter: (api: Api, db: Store, cache: Cache) => ({}: StartStakeParams) => Promise;