import { DeviceTypes, UartConfiguration } from "./types";
/**
 * This function represent an interface of a Device
 * You are allowed to send commands on a specific UART port
 *
 * @param uartConfiguration is a parameter who specify the UART configuration
 * @returns
 */
export declare const Device: (uartConfiguration?: UartConfiguration) => DeviceTypes;
