import { FC } from "react"; interface NvTimePickerProps { value?: string | null; onChange: (value: string) => void; className?: string; } /** * Functional component for a time picker. * Renders a time picker interface with hour and minute selection. * * @param value - The selected time value. * @param onChange - Function to handle time value changes. * @param className - Additional CSS class for styling. * @returns A time picker component with hour and minute selection options. */ declare const NvTimePicker: FC; export default NvTimePicker;