import { ActiveModifiers } from '../../types/Modifiers';
/** Represent the props for the [[DayContent]] component. */
export interface DayContentProps {
    /** The date representing the day. */
    date: Date;
    /** The month where the day is displayed. */
    displayMonth: Date;
    /** The active modifiers for the given date. */
    activeModifiers: ActiveModifiers;
}
/**
 * Render the content of the day cell.
 */
export declare function DayContent(props: DayContentProps): JSX.Element;
