import { WalletCondition } from '../models/wallet-condition.model'; import { CustomerWallet } from '../models/customer-wallet.model'; export declare class WalletInititation { protected walletCondition: WalletCondition; protected wallet: CustomerWallet; protected orderAmount: number; activityAmount: number; loyaltyAmount: number; constructor(condition: WalletCondition, wallet: CustomerWallet, orderAmount?: number); checkWalletCondition(): number; protected walletSwitch(min: boolean, max: boolean, amount: number, min_amount: number, max_amount: number): boolean; protected checkMinimumAmount(min?: boolean, amount?: number, minimumAmount?: number): number; protected checkMaximumAmount(max?: boolean, amount?: number, maximumAmount?: number): number; }