export declare class State {
    private state;
    private subscribers;
    setState(newState: any): void;
    subscribe(callback: (state: any) => void): () => void;
    private notifySubscribers;
}
