import { DistanceUnitType, NumberFormatType, PrecipitationUnitType, PressureUnitType, TemperatureUnitType, WindSpeedUnitType } from '../../system/system.constants'; import { DisplayRole, HomeMode } from '../displays.constants'; export declare class UpdateDisplayDto { version?: string; build?: string | null; screen_width?: number; screen_height?: number; pixel_ratio?: number; unit_size?: number; rows?: number; cols?: number; dark_mode?: boolean; brightness?: number; screen_lock_duration?: number; screen_saver?: boolean; screen_power_off?: boolean; name?: string | null; role?: DisplayRole; room_id?: string | null; home_mode?: HomeMode; home_page_id?: string | null; speaker?: boolean; speaker_volume?: number; microphone?: boolean; microphone_volume?: number; number_format?: NumberFormatType | null; temperature_unit?: TemperatureUnitType | null; wind_speed_unit?: WindSpeedUnitType | null; pressure_unit?: PressureUnitType | null; precipitation_unit?: PrecipitationUnitType | null; distance_unit?: DistanceUnitType | null; weather_location_id?: string | null; current_ip_address?: string | null; } export declare class ReqUpdateDisplayDto { data: UpdateDisplayDto; }