export declare const PAYMENT_TYPE: readonly ["BANK_TRANSFER", "INTERAC", "CHECK"]; export declare type PaymentType = typeof PAYMENT_TYPE[number]; export declare const COMMISSION_RATE: readonly [0, 25, 45, 50, 55, 60, 65, 70, 85]; export declare type CommissionRate = typeof COMMISSION_RATE[number]; export declare const LATE_DEPOSIT_FEE_PCT = 10; export declare const NO_SAVE_DEPOSIT_FEE = 2500; export declare const TAX_RATE = 14.975; export declare const PHOTOGRAPH_FEE = 7088; export declare const LEGACY_PHOTOGRAPH_FEE = 5488; export declare const BONUS_WEEK_NB = 16; export declare const BONUSES: { 40: number; 50: number; 60: number; 70: number; 80: number; }; export declare type BonusStep = keyof typeof BONUSES; export declare const BONUS_STEPS: (80 | 60 | 70 | 40 | 50)[]; export interface BonusDescription { step: number; amount: number; }