import { IDict } from "../interfaces"; import { type Curve } from "../curve.js"; export declare function getUserPoolListByLiquidity(this: Curve, address?: string): Promise; export declare function getUserLiquidityUSD(this: Curve, pools: string[], address?: string): Promise; export declare function getUserPoolListByClaimable(this: Curve, address?: string): Promise; export declare function getUserClaimable(this: Curve, pools: string[], address?: string): Promise<{ token: string; symbol: string; amount: string; price: number; }[][]>; export declare function getUserPoolList(this: Curve, address?: string, useApi?: boolean): Promise; export declare function _getAmplificationCoefficientsFromApi(this: Curve): Promise>; export declare const checkVyperVulnerability: (chainId: number, poolId: string, implementation: string | null) => boolean;