import type { Input } from '../Input';
import type { Output } from '../Output';
import type { Node } from '../node/Node';
import { NodeComponent } from './NodeComponent';
export declare class R_SocketSelection_NC extends NodeComponent {
    constructor({ owner }: {
        owner: Node;
    });
    selectedInputs(): Record<string, Input>;
    selectedOutputs(): Record<string, Output>;
}
