export declare class LsStatus {
  /**
   * Specifies the IDs of the sensors that are to be displayed.
   */
  readonly sensorIds = "500,501,502,503,514,515,590";
  /**
   * The unique key that is used to identify store data.
   */
  readonly idKey: string;
  /**
   * The sensor IDs input property, converted to an array of numbers.
   */
  sensorIdsArray: number[];
  private store;
  componentWillLoad(): Promise<void>;
  private handleBackdoor;
  render(): any;
}
