import type { TectoyLampLedType, TectoyLampStatusType } from './types/tectoysunmi-types'; declare const TecToySunmiLampadaSDK: { ControlarLampada: (status: TectoyLampStatusType, led: TectoyLampLedType) => Promise; ControlarLampadaLoop: (status: TectoyLampStatusType, onTime: number, offTime: number, led: TectoyLampLedType) => Promise; Desligar: () => Promise; }; export default TecToySunmiLampadaSDK;