import { ReactElement } from 'react';
interface NavigationBarDateTextProps {
    highlightDate: Date;
    highlightDateDescription?: (highlightDate: Date) => string;
}
export default function NavigationBarDateText(props: NavigationBarDateTextProps): ReactElement;
export {};
