import { PropsWithChildren } from 'react';
type Position = 'left' | 'top' | 'right' | 'bottom';
type Props = {
    isConnecting: boolean;
    targetPortPosition: Position;
    offset?: {
        x?: number;
        y?: number;
    };
};
export declare const NodeAsPortWrapper: import('react').NamedExoticComponent<PropsWithChildren<Props>>;
export {};
