import { Model } from '@loopback/repository'; import { AddressDto } from './address-dto.model'; import { Options } from 'loopback4-billing'; export declare class CustomerDto extends Model { id?: string; firstName: string; lastName: string; email: string; company: string; phone: string; billingAddress: AddressDto; options?: Options; constructor(data?: Partial); }