export declare class PaymentService {
    processPayment(amount: number): boolean;
    validatePayment(paymentData: any): boolean;
}
