import Input from './Input.js'; import type { AmPmType } from '../shared/types.js'; type Hour12InputProps = { amPm: AmPmType | null; maxTime?: string; minTime?: string; value?: string | null; } & Omit, 'max' | 'min' | 'name' | 'nameForClass'>; export default function Hour12Input({ amPm, maxTime, minTime, value, ...otherProps }: Hour12InputProps): React.ReactElement; export {};