/** * TablePlanet Component * * Renders a database table as a 3D planet/sphere in the galaxy. * Size reflects importance, color reflects sensitivity level. */ import type { TableNode } from '../../types/index.js'; export interface TablePlanetProps { /** Table data */ table: TableNode; /** Whether this table is selected */ isSelected?: boolean; /** Whether this table is hovered */ isHovered?: boolean; /** Click handler */ onClick?: () => void; /** Hover handlers */ onPointerOver?: () => void; onPointerOut?: () => void; } export declare function TablePlanet({ table, isSelected, isHovered, onClick, onPointerOver, onPointerOut, }: TablePlanetProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TablePlanet.d.ts.map