export type Customer = { /** ID of the customer */ id: number; /** Name of the customer */ name: string; /** Customer number */ number: string | null; /** Is the customer active? */ active: boolean; /** Is the customer billable by default? */ billableDefault: boolean; /** Note about the customer. Only for owners and managers */ note?: string | null; /** Linked billing service id */ billServiceId?: string | null; /** Customer color */ color: number; /** Whether this is test data */ testData: boolean; }; //# sourceMappingURL=customer.d.ts.map