/// <reference types="react" />
import { Node } from '@antv/x6';
export interface ConvertProps {
    name: string;
    inputs: string;
    outputs: string;
    width: number;
    height: number;
    shape: string;
    ports: {
        groups: {
            [key: string]: {
                position: string;
                attrs: {
                    circle: {
                        r: number;
                        magnet: boolean;
                        stroke: string;
                        strokeWidth: number;
                        fill: string;
                        style?: {
                            visibility: string;
                            opacity: string;
                        };
                    };
                };
                zIndex: number;
            };
        };
        items: {
            id: string;
            group: string;
        }[];
    };
    component: (node: Node) => JSX.Element;
}
declare const Convert: () => ConvertProps;
export default Convert;
