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<{
        array: T[];
    }>;
    outputs: ToOutput<{
        length: number;
    }>;
    constructor(props: INodeDefinition);
    execute(): void | Promise<void>;
}
//# sourceMappingURL=length.d.ts.map