import * as common from '@protocolink/common'; import * as core from '@protocolink/core'; export type SupplyCollateralLogicTokenList = Record; export type SupplyCollateralLogicFields = core.TokenInFields<{ marketId: string; }>; export type SupplyCollateralLogicOptions = Pick; export declare class SupplyCollateralLogic extends core.Logic implements core.LogicTokenListInterface, core.LogicBuilderInterface { static id: string; static protocolId: string; static readonly supportedChainIds: number[]; getTokenList(): Promise; build(fields: SupplyCollateralLogicFields, options: SupplyCollateralLogicOptions): Promise<{ to: string; data: string; inputs: core.DataType.InputStruct[]; wrapMode: number; approveTo: string; callback: string; }>; }