import { default as React } from 'react'; import { AccessData, AccessWindow } from '../types'; export interface AccessCardProps { /** Current access data */ access?: AccessData; /** Ground station name */ groundStationName: string; /** Spacecraft name */ spacecraftName?: string; /** Next access windows */ upcomingWindows?: AccessWindow[]; /** 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; } /** * AccessCard - Displays spacecraft-ground station link status * * @example * ```tsx * * ``` */ export declare const AccessCard: React.NamedExoticComponent;