import React, { type MouseEventHandler, type HTMLAttributes } from "react"; /** * Render the toolbar with the navigation button. * * @group Components * @see https://daypicker.dev/guides/custom-components */ export declare function Nav(props: { onPreviousClick?: MouseEventHandler; onNextClick?: MouseEventHandler; previousMonth?: Date | undefined; nextMonth?: Date | undefined; } & HTMLAttributes): React.JSX.Element; export type NavProps = Parameters[0];