import { ReactElement } from 'react';
export interface DayHeaderLabelProps {
    highlightDate: Date;
}
export default function DayHeaderLabel(props: DayHeaderLabelProps): ReactElement;
