import MtnAPISoftVerifyParams from '../interfaces/MtnAPISoftVerifyParams'; import TokenTypes from '../enums/TokenTypes'; import MtnAPIPayParams from '../interfaces/MtnAPIPayParams'; import MtnAPIVerifyParams from '../interfaces/MtnAPIVerifyParams'; declare const PayUtil: { createPaymentLink: (params: MtnAPIPayParams, ref: string) => string | null; createVerificationLink: (params: MtnAPIVerifyParams, ref: string) => string | null; createSoftVerificationLink: (params: MtnAPISoftVerifyParams) => string | null; createPollingLink: (ref: string) => string | null; paymentAmountFromPayParams: (params: MtnAPIPayParams) => number | null; convertSizeToQuantity: (size: number, tokenType: TokenTypes) => number | null; convertQuantityToSize: (quantity: number, tokenType: TokenTypes) => number | null; }; export default PayUtil;