declare const getPaymentModeByName: (value: string, data: {
    [key: string]: any;
}) => any;
declare const encryptAES: (message: string, object: any) => any;
declare const encryptAESString: (data: string, authkey: string, authiv: string) => string;
declare const decAESString: (data: string, authkey: string, authiv: string) => string;
declare const getUUID: () => string;
declare const getPaymentUrl: (env?: string) => string;
export { getPaymentModeByName, encryptAES, encryptAESString, getUUID, decAESString, getPaymentUrl };
