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