/**
 * Port Component
 *
 * Renders a connection port on a circuit component
 */
import React from 'react';
import { PortSchema } from '../schemas/componentSchema';
export interface PortProps {
    componentId: string;
    port: PortSchema;
    selected?: boolean;
    onClick?: (portId: string, event: React.MouseEvent) => void;
}
declare const Port: React.FC<PortProps>;
export default Port;
//# sourceMappingURL=Port.d.ts.map