import { default as React } from 'react'; import { AstroIconName } from './AstroIcon'; import { StatusLevel } from '../../utils'; export interface CardHeaderProps { /** Icon name (AstroIcon) */ icon: AstroIconName | string; /** Main title text */ title: string; /** Optional subtitle text */ subtitle?: string; /** Status level - determines icon color and status indicator */ status?: StatusLevel; /** Badge text (e.g., orbit type, category) */ badge?: string; /** Badge background color */ badgeColor?: string; /** Show pin indicator */ isPinned?: boolean; /** Icon size override */ iconSize?: number; /** Custom icon color (overrides status-based coloring) */ iconColor?: string; /** Hide status indicator (show plain icon) */ hideStatusIndicator?: boolean; /** Additional className */ className?: string; /** Additional styles */ style?: React.CSSProperties; /** Slot for additional content on the right side */ rightSlot?: React.ReactNode; } export declare const CardHeader: React.NamedExoticComponent; export default CardHeader;