/** * Copyright IBM Corp. 2016, 2026 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import React, { type SelectHTMLAttributes } from 'react'; export type TimePickerSelectProps = { /** * Provide the contents of your TimePickerSelect */ children?: React.ReactNode; /** * Specify an optional className to be applied to the node containing the label and the select box */ className?: string; /** * Optionally provide the default value of the `` */ id: string; } & React.SelectHTMLAttributes & React.InputHTMLAttributes; declare const TimePickerSelect: React.ForwardRefExoticComponent<{ /** * Provide the contents of your TimePickerSelect */ children?: React.ReactNode; /** * Specify an optional className to be applied to the node containing the label and the select box */ className?: string; /** * Optionally provide the default value of the `` */ id: string; } & React.SelectHTMLAttributes & React.InputHTMLAttributes & React.RefAttributes>; export default TimePickerSelect;