import { INodeDefinition, ToInput, ToOutput } from '../../index.js';
import { Node } from '../../programmatic/node.js';
/**
 * This node replaces all occurrences of a search string with a replacement string
 */
export default class NodeDefinition extends Node {
    static title: string;
    static type: string;
    static description: string;
    inputs: ToInput<{
        string: string;
        search: string;
        replace: string;
    }>;
    outputs: ToOutput<{
        string: string;
    }>;
    constructor(props: INodeDefinition);
    execute(): void | Promise<void>;
}
//# sourceMappingURL=replace.d.ts.map