import { Relation } from 'typeorm'; import { Client } from './client'; export declare class CustomerAttribute { clientId: number; client: Relation; enterprise: boolean; maintenanceModule: boolean; icp: string | null; billingMethod: string | null; customerSegment: string | null; }