import { default as React } from 'react';
import { SpacecraftPosition } from '../types';
export interface OrbitCardProps {
/** Spacecraft position data */
spacecraft?: SpacecraftPosition;
/** Show computed orbital parameters (period, velocity) */
showComputed?: boolean;
/** Loading state */
loading?: boolean;
/** Custom className */
className?: string;
/** Enable compact mode - shows condensed view that expands on hover/click */
compact?: boolean;
/** Start expanded when in compact mode (pinned state) */
defaultExpanded?: boolean;
/** Callback when pin state changes in compact mode */
onPinChange?: (isPinned: boolean) => void;
}
/**
* OrbitCard - Displays spacecraft orbital parameters
*
* @example
* ```tsx
*
* ```
*/
export declare const OrbitCard: React.NamedExoticComponent;