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