/** * Copyright IBM Corp. 2022, 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 interface FluidTimePickerSelectProps { /** * Provide the contents of your Select */ 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; /** * Provide label text to be read by screen readers when interacting with the * control */ labelText?: React.ReactNode; /** * Provide an optional `onChange` hook that is called each time the value of * the underlying `` changes */ onChange?: React.ChangeEventHandler; } declare const FluidTimePickerSelect: React.ForwardRefExoticComponent>; export default FluidTimePickerSelect;