import { DayPickerProps } from '../ui/calendar'; /** * DatePicker 색상 테마. * - `lime`: 크플(cple) 서비스 영역 * - `gray`: 그 외 서비스/서브 영역 * (Tailwind JIT가 스캔할 수 있도록 클래스는 동적 조합 없이 리터럴로 작성한다.) */ export type DatePickerColorType = 'lime' | 'gray'; type CalendarClassNames = DayPickerProps['classNames']; /** 표시 월 맥락별(현재/다음 달) 텍스트 색상. 색상 테마와 무관하게 고정. (이전 월 날짜는 기본 disabled) */ export declare const MODIFIERS_CLASS_NAMES: { nextMonthEnabled: string; nextMonthDisabled: string; currentMonthEnabled: string; currentMonthDisabled: string; }; /** 단일 선택 캘린더의 색상 오버라이드 classNames. */ export declare const getSingleClassNames: (colorType: DatePickerColorType) => CalendarClassNames; /** * 기간 선택 캘린더의 색상 오버라이드 classNames. * `isSingleOrSame`이면 그라데이션을 제거하고 단일 원형만 남긴다. */ export declare const getRangeClassNames: (colorType: DatePickerColorType, isSingleOrSame: boolean) => CalendarClassNames; export {}; //# sourceMappingURL=styles.d.ts.map