declare const useEntity: (entityId: string) => { readonly entity_id: string; readonly state: string; readonly last_changed: string; readonly last_updated: string; readonly attributes: { readonly [x: string]: any; readonly friendly_name?: string | undefined; readonly unit_of_measurement?: string | undefined; readonly icon?: string | undefined; readonly entity_picture?: string | undefined; readonly supported_features?: number | undefined; readonly hidden?: boolean | undefined; readonly assumed_state?: boolean | undefined; readonly device_class?: string | undefined; readonly state_class?: string | undefined; readonly restored?: boolean | undefined; }; readonly context: { readonly id: string; readonly user_id: string | null; readonly parent_id: string | null; }; } | undefined; export default useEntity;