import { default as React } from 'react'; export type CalendarItemTextVariant = "large" | "small" | "standardMedium"; type Props = { id: string; text: string; checked?: boolean; disabled?: boolean; doubleStarred?: boolean; starred?: boolean; /** * `small` matches TimeframeSwitcher / TimeRangeSwitcher tick labels (e.g. Reports). * Default `large` preserves existing download overlay and form pickers. */ textVariant?: CalendarItemTextVariant; /** * Text color when not selected (unchecked). Defaults to primary for backward compatibility. */ unselectedLabelColor?: "primary" | "champion"; onClick: (id: string) => void; }; declare const _default: React.MemoExoticComponent<(props: Props) => import("react/jsx-runtime").JSX.Element>; export default _default;