forked from sagnik/Project_Velocity
10 lines
353 B
TypeScript
10 lines
353 B
TypeScript
import React, { type HTMLAttributes } from "react";
|
|
/**
|
|
* Render the navigation dropdowns for the calendar.
|
|
*
|
|
* @group Components
|
|
* @see https://daypicker.dev/guides/custom-components
|
|
*/
|
|
export declare function DropdownNav(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
|
|
export type DropdownNavProps = Parameters<typeof DropdownNav>[0];
|