import { Env } from "../../dists/env.js"; import * as Result from "../../utility/result.js"; import { Calculator } from "../../value/VCalculator.js"; import { SqErrorList } from "../SqError.js"; import { SqValueContext } from "../SqValueContext.js"; import { SqValue } from "./index.js"; import { SqInput } from "./SqInput.js"; export declare class SqCalculator { private _value; context?: SqValueContext | undefined; constructor(_value: Calculator, context?: SqValueContext | undefined); run(_arguments: SqValue[], env: Env): Result.result; get title(): string | undefined; get description(): string | undefined; get autorun(): boolean; get sampleCount(): number | undefined; get hashString(): string; get inputs(): SqInput[]; } //# sourceMappingURL=SqCalculator.d.ts.map