///
import { ArduinoUnoElement } from './arduino-uno-element';
import { LEDElement } from './led-element';
import { PotentiometerElement } from './potentiometer-element';
import { PushbuttonElement } from './pushbutton-element';
import { ArduinoMegaElement } from './arduino-mega-element';
import { ArduinoNanoElement } from './arduino-nano-element';
import { ESP32DevkitV1Element } from './esp32-devkit-v1-element';
import { CihlaElement } from './cihla-element';
import { ConveyorElement } from './conveyor-element';
import { SensorNjk5002cElement } from './sensor-njk-5002c-element';
import { HcSr04Element } from './hc-sr04-element';
import { TurnTableElement } from './turn-table-element';
import { EyeOfHorusElement } from './eye-of-horus-element';
declare type WokwiElement = Partial & React.ClassAttributes;
declare global {
namespace JSX {
interface IntrinsicElements {
'wokwi-arduino-uno': WokwiElement;
'wokwi-led': WokwiElement;
'wokwi-pushbutton': WokwiElement;
'wokwi-potentiometer': WokwiElement;
'wokwi-arduino-mega': WokwiElement;
'wokwi-arduino-nano': WokwiElement;
'wokwi-esp32-devkit-v1': WokwiElement;
'wokwi-cihla': WokwiElement;
'wokwi-conveyor': WokwiElement;
'wokwi-sensor-njk-5002c': WokwiElement;
'wokwi-hc-sr04': WokwiElement;
'wokwi-turn-table': WokwiElement;
'wokwi-eye-of-horus': WokwiElement;
}
}
}
export {};