import { OnInit } from "@angular/core"; import { Calculation, Client } from "@salaxy/core"; import { SalaxyContext } from "../../../services/index"; /** * Simple calculator user interface. * This is the anonymous version */ export declare class NgCalculatorComponent implements OnInit { protected context: SalaxyContext; protected client: Client; /** Internal field for model */ private modelState; /** The calculation that we operate */ model: Calculation; constructor(context: SalaxyContext, client: Client); /** Initializes the component */ ngOnInit(): void; /** Recalculates the calculation */ recalculate(): void; }