import { IntentOrigin } from '../../intents/intents.constants'; export declare class PropertyCommandContextDto { origin?: IntentOrigin; display_id?: string; space_id?: string; role_key?: string; extra?: Record; } export declare class PropertyCommandValueDto { device: string; channel: string; property: string; value: string | boolean | number; } export declare class PropertyCommandDto { request_id: string; context?: PropertyCommandContextDto; properties: PropertyCommandValueDto[]; }