import { ReadableDevice } from "./Device"; import { I2C } from "./i2c"; /** Temperature (°C) */ export declare type Temperature = number; export declare function adt7410(bus?: I2C, address?: number): ReadableDevice; export default adt7410;