import React from 'react'; export interface CalendarCellProps extends React.ButtonHTMLAttributes { /** * if cell day is today, then property will be true */ readonly isToday?: boolean; /** * if cell day is selected, then property will be true */ readonly isSelected?: boolean; /** * if cell day is disabled, then property will be true */ readonly isDisabled?: boolean; /** * Cell accent color\ * Possibility variants: `primary` `secondary` or custom color string like hex or rgb format */ readonly accentColor?: 'primary' | 'secondary' | string; readonly fill?: boolean; } declare const _default: React.ForwardRefExoticComponent>; export default _default;