import { LocalPaymentMethod, LocalReserve, Partner, User, UserPaymentMethod } from ".."; export declare class LocalTableReservePayment { id: number; code: string; local_reserve: LocalReserve; 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; user: User | null; status: number; created: Date; updated: Date | null; partner: Partner | null; user_ip: string | null; }