export type SignalRDevice = {
    id: number;
    name: string;
    hiloId: string;
    type: string;
    assetId?: string;
    locationId: number;
    modelNumber?: string;
    identifier?: string;
};
export type DeviceHubResult = {
    devices: SignalRDevice[];
    connected: boolean;
};
export declare function connectToDeviceHub(locationId: number): Promise<DeviceHubResult>;
export declare function disconnectDeviceHub(): void;
//# sourceMappingURL=deviceHub.d.ts.map