/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { InputHTMLAttributes } from 'react'; export type TimeInputProps = { /** Whether the value fails a validation rule. */ invalid?: boolean; } & Omit, 'aria-invalid' | 'type'>; /** * @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. */ invalid?: boolean; } & Omit, "type" | "aria-invalid"> & import("react").RefAttributes>;