import { Relation } from 'typeorm'; import { User } from './user'; export declare class UserConfiguration { id: number; userId: Buffer; user: Relation; isMetric: boolean; timezone: string | null; createdAt: Date | null; modifiedAt: Date | null; defaultMapLayer: string | null; speedUnits: string | null; distanceUnits: string | null; alertsNotificationsOn: boolean | null; dataSourceTypeId: number | null; homepage: string | null; temperatureUnits: string | null; addressFormat: string | null; assetProfileStatusLabelsEnabled: boolean; trackerClusteringEnabled: boolean; }