export type PropertyValueTrend = 'rising' | 'falling' | 'stable'; export declare class PropertyValueState { value: string | number | boolean | null; lastUpdated: string | null; trend: PropertyValueTrend | null; constructor(value?: string | number | boolean | null, lastUpdated?: string | null, trend?: PropertyValueTrend | null); }