import * as common from '@protocolink/common'; import * as core from '@protocolink/core'; export type RepayLogicTokenList = Record; export type RepayLogicParams = core.RepayParams<{ marketId: string; }>; export type RepayLogicFields = core.RepayFields<{ marketId: string; }>; export declare class RepayLogic extends core.Logic implements core.LogicTokenListInterface, core.LogicBuilderInterface { static id: string; static protocolId: string; static readonly supportedChainIds: number[]; getTokenList(): Promise; quote(params: RepayLogicParams): Promise<{ marketId: string; borrower: string; input: common.TokenAmount; }>; build(fields: RepayLogicFields): Promise<{ to: string; data: string; inputs: core.DataType.InputStruct[]; wrapMode: number; approveTo: string; callback: string; }>; }