import type { ChainId } from "../../types/config.js"; import type { Address } from "../../types/address.js"; export interface LSTConfig { readonly symbol: string; readonly lstSymbol: string; readonly assetAddress: Address; readonly lstAddress: Address; readonly decimals: number; } /** * Get supported LST asset symbols for a chain. */ export declare function getSupportedLSTAssets(chainId: ChainId): string[]; /** * Get LST configuration for the given chain and asset symbol. */ export declare function getLSTConfig(chainId: ChainId, assetSymbol: string): LSTConfig | undefined; //# sourceMappingURL=presets.d.ts.map