import { BaseModel } from './base.model'; export declare class Company extends BaseModel { sid?: string; business?: any; nome?: string; domain?: string; timezone?: string; integrado?: number; firstweekday?: string; googleapikey?: string; unit_speed?: any; unit_fuel?: any; unit_vol?: any; unit_dist?: any; unit_temperature?: any; dealers?: any[]; ts_disable?: string; blocked?: boolean; total_users?: any; total_vehicles?: any; cached_storage?: any; production_time?: number; constructor(sid?: string, business?: any, nome?: string, domain?: string, timezone?: string, integrado?: number, firstweekday?: string, googleapikey?: string, unit_speed?: any, unit_fuel?: any, unit_vol?: any, unit_dist?: any, unit_temperature?: any, dealers?: any[], ts_disable?: string, blocked?: boolean, total_users?: any, total_vehicles?: any, cached_storage?: any, production_time?: number); static fromJson(json: any): Company; }