import CommManagerInterface from './interface'; import {GwTokenizationResponse} from '../common/types'; interface TokenizationHandler { constructor(commMgr: CommManagerInterface); tokenize(gwConfig: any, payload: any): Promise; loadScript(gwConfig: any): Promise; validateEbanxDocumentId(ebanx: any, docInformation: any, country: string): Promise; } export default TokenizationHandler;