import { LocalPaymentMethod, LocalTableReservePayment, RequestLocalPayment } from ".."; import { Local } from "./Local"; export declare class PaymentMethod { id: number; name: string; description: string | null; settings: any | null; created: Date; status: number; locals: Local[]; payment_methods: RequestLocalPayment[]; local_table_reserve_payments: LocalTableReservePayment[]; payments_method: LocalPaymentMethod[]; }