UNPKG

332 BTypeScriptView Raw
1import React, { type OptionHTMLAttributes } from "react";
2/**
3 * Render the `option` element.
4 *
5 * @group Components
6 * @see https://daypicker.dev/guides/custom-components
7 */
8export declare function Option(props: OptionHTMLAttributes<HTMLOptionElement>): React.JSX.Element;
9export type OptionProps = Parameters<typeof Option>[0];