export type ParserType = { bakongAccountID: string | null; accountInformation: string | null; merchantID: string | null; acquiringBank: string | null; billNumber: string | null; mobileNumber: string | null; storeLabel: string | null; terminalLabel: string | null; purposeOfTransaction: string | null; languagePreference: string | null; merchantNameAlternateLanguage: string | null; merchantCityAlternateLanguage: string | null; unionPayMerchant: string | null; timestamp: string | null; merchantType: string | null; payloadFormatIndicator: string | null; pointofInitiationMethod: string | null; merchantCategoryCode: string | null; transactionCurrency: string | null; transactionAmount: string | null; countryCode: string | null; merchantName: string | null; merchantCity: string | null; crc: string | null; }; export type ReturnType = { status: { code: number; message: string | null; errorCode: number | null; }; data: T; }; export type ResponseResult = { qr: string; md5: string; }; export declare const response: (data: T, error?: { code: number; message: string; }) => ReturnType;