import { Store } from "@equilab/utils"; import { Currency } from "@equilab/api/equilibrium"; import { ExplorerParams } from "."; declare type ReinitList = Array<{ blockNumber: number; collateral: Partial>; debt: Partial>; }>; export interface ReinitParams extends ExplorerParams<{ address: string; }> { method: "reinit"; } export declare const isReinit: (body: ExplorerParams) => body is ReinitParams; export declare const createBailsmanFilter: (store: Store) => ({ payload: { address } }: ReinitParams) => Promise<{ bailsman: ReinitList; fee: ReinitList; marginCall: ReinitList; }>; export {};