export interface ApiResponse { success: boolean; errorsMessages: string[]; data: any; } export interface PaymentResult { success: boolean; paymentId: string; integrator: string; }