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