import { type Address } from "../../types/index.js"; export interface VesuChainConfig { poolFactory?: Address; defaultPool?: Address; marketsApiUrl?: string; positionsApiUrl?: string; } /** * Chain-aware Vesu defaults. * * Mainnet addresses source: * https://docs.vesu.xyz/developers/addresses */ export declare const vesuPresets: { readonly SN_MAIN: { readonly poolFactory: Address; readonly defaultPool: Address; readonly marketsApiUrl: "https://api.vesu.xyz/markets"; readonly positionsApiUrl: "https://api.vesu.xyz/positions"; }; readonly SN_SEPOLIA: { readonly poolFactory: Address; readonly defaultPool: Address; }; }; //# sourceMappingURL=presets.d.ts.map