import { ChangeEventHandler, ComponentPropsWithRef } from 'react'; type HTMLSelectProps = ComponentPropsWithRef<'select'>; export type InputDateSelectProps = HTMLSelectProps & { label: string; options: readonly string[]; value: string; onChange: ChangeEventHandler; }; export declare function InputDateSelect({ label, onChange, options, value, ...props }: InputDateSelectProps): import("react/jsx-runtime").JSX.Element; export default InputDateSelect;