import { INodeDefinition, Node } from '../../programmatic/node.js';
import { ToInput } from '../../programmatic/input.js';
import { ToOutput } from '../../programmatic/index.js';
export type ArithemeticValue = {
    index: number;
    value: number;
};
export default class NodeDefinition extends Node {
    static title: string;
    inputs: ToInput<{
        base: number;
        stepsDown: number;
        stepsUp: number;
        increment: number;
        precision: number;
    }>;
    outputs: ToOutput<{
        array: number[];
        indexed: ArithemeticValue[];
    }>;
    static type: string;
    static description: string;
    constructor(props: INodeDefinition);
    execute(): void | Promise<void>;
}
//# sourceMappingURL=arithmetic.d.ts.map