import { LocalPaymentMethod, Partner, RequestLocal, User, UserPaymentMethod } from ".."; export declare class RequestLocalPayment { id: number; code: string; user: User | null; request_local: RequestLocal; payment_method: LocalPaymentMethod; amount_paid: number; remaining_amount: number; card_last_four_digits: string | null; card_type: string | null; card: UserPaymentMethod | null; comments: string | null; status: number; created: Date; updated: Date | null; partner: Partner | null; user_ip: string | null; }