import { Api } from "../../types"; import { PortfolioParams } from "./"; export interface LtvParams extends PortfolioParams<{ address: string; }> { method: "ltv"; } export declare const isLtv: (body: PortfolioParams) => body is LtvParams; export declare const createLtvFilter: (api: Api) => ({ payload: { address } }: LtvParams) => Promise;