react-day-picker
Version:
Customizable Date Picker for React
10 lines (9 loc) • 332 B
TypeScript
import React, { type SelectHTMLAttributes } from "react";
/**
* Render the `select` element.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export declare function Select(props: SelectHTMLAttributes<HTMLSelectElement>): React.JSX.Element;
export type SelectProps = Parameters<typeof Select>[0];