import { UmbBasicState } from './basic-state.js'; /** * @class UmbNumberState * @augments {BehaviorSubject} * @description - State holding data of number, this ensures the data is unique, not updating any Observes unless there is an actual change of the value bu using `===`. */ export declare class UmbNumberState extends UmbBasicState { constructor(initialData: T | number); }