import { AutoEncoder } from '@simonbackx/simple-encoding'; import { Company } from './Company.js'; /** * Who is paying / paid, and how can we contact them */ export declare class PaymentCustomer extends AutoEncoder { firstName: string | null; lastName: string | null; email: string | null; phone: string | null; /** * As soon as this is set, we can assume that the customer is a company */ company: Company | null; get name(): string | null; get dynamicName(): string; get dynamicEmail(): string | null; equals(other: PaymentCustomer): boolean; } //# sourceMappingURL=PaymentCustomer.d.ts.map