import { Node } from '../../programmatic/node.js';
export default class NodeDefinition extends Node {
    static title: string;
    static type: string;
    static description: string;
    static annotations: {
        'engine.capability.secret': boolean;
    };
    constructor(props: any);
    execute(): Promise<void>;
}
//# sourceMappingURL=retrieve.d.ts.map