/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { InputHTMLAttributes } from 'react'; export type TimeInputProps = { /** Whether the value fails a validation rule. */ readonly invalid?: boolean; } & Readonly, 'aria-invalid' | 'type'>>; /** * Helps users enter time. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-time-input--docs Time Input docs at Amsterdam Design System} */ export declare const TimeInput: import("react").ForwardRefExoticComponent<{ /** Whether the value fails a validation rule. */ readonly invalid?: boolean; } & Readonly, "aria-invalid" | "type">> & import("react").RefAttributes>;