import { INodeDefinition, ToInput, ToOutput } from '../../index.js';
import { Node } from '../../programmatic/node.js';
import { Operator } from '../../schemas/operators.js';
export default class NodeDefinition extends Node {
    static title: string;
    static type: string;
    static description: string;
    inputs: ToInput<{
        array: any[];
        target: number;
        operator: Operator.GREATER_THAN | Operator.LESS_THAN;
    }>;
    outputs: ToOutput<{
        value: any;
        index: number;
        found: boolean;
    }>;
    constructor(props: INodeDefinition);
    execute(): void;
}
//# sourceMappingURL=findFirst.d.ts.map