import { INodeDefinition, ToInput, ToOutput } from '../../index.js';
import { Node } from '../../programmatic/node.js';
export default class NodeDefinition<T> extends Node {
    static title: string;
    static type: string;
    static description: string;
    inputs: ToInput<{
        /**
         * The array to push to
         */
        array: T[][];
    }>;
    outputs: ToOutput<{
        /**
         * The array with the item pushed to it
         */
        array: T[];
    }>;
    constructor(props: INodeDefinition);
    execute(): void | Promise<void>;
}
//# sourceMappingURL=flatten.d.ts.map