import { INodeDefinition, ToInput, ToOutput } from '../../index.js';
import { Node } from '../../programmatic/node.js';
export declare enum Position {
    START = "start",
    END = "end"
}
/**
 * This node pads a string to a given length
 */
export default class NodeDefinition extends Node {
    static title: string;
    static type: string;
    static description: string;
    inputs: ToInput<{
        string: string;
        length: number;
        character: string;
        position: Position;
    }>;
    outputs: ToOutput<{
        string: string;
    }>;
    constructor(props: INodeDefinition);
    execute(): void | Promise<void>;
}
//# sourceMappingURL=pad.d.ts.map