import { CreateChannelDto } from '../../../modules/devices/dto/create-channel.dto'; import { DEVICES_HOME_ASSISTANT_TYPE } from '../devices-home-assistant.constants'; import { CreateHomeAssistantChannelPropertyDto } from './create-channel-property.dto'; export declare class CreateHomeAssistantChannelDto extends CreateChannelDto { readonly type: typeof DEVICES_HOME_ASSISTANT_TYPE; properties?: CreateHomeAssistantChannelPropertyDto[]; }