/** * EntryPointStation Component * * Renders an API entry point as a space station at the galaxy edge. * Color indicates authentication level (red = public, green = protected). */ import type { EntryPointNode } from '../../types/index.js'; export interface EntryPointStationProps { /** Entry point data */ entryPoint: EntryPointNode; /** Whether this entry point is selected */ isSelected?: boolean; /** Whether this entry point is hovered */ isHovered?: boolean; /** Click handler */ onClick?: () => void; /** Hover handlers */ onPointerOver?: () => void; onPointerOut?: () => void; } export declare function EntryPointStation({ entryPoint, isSelected, isHovered, onClick, onPointerOver, onPointerOut, }: EntryPointStationProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=EntryPointStation.d.ts.map