import { CreateDeviceDto } from '../../../modules/devices/dto/create-device.dto'; import { DEVICES_SHELLY_V1_TYPE } from '../devices-shelly-v1.constants'; export declare class CreateShellyV1DeviceDto extends CreateDeviceDto { readonly type: typeof DEVICES_SHELLY_V1_TYPE; hostname?: string | null; password?: string | null; }