/**
 * @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<InputHTMLAttributes<HTMLInputElement>, 'aria-invalid' | 'type'>;
export declare const TimeInput: import("react").ForwardRefExoticComponent<{
    /** Whether the value fails a validation rule. */
    invalid?: boolean;
} & Omit<InputHTMLAttributes<HTMLInputElement>, "aria-invalid" | "type"> & import("react").RefAttributes<HTMLInputElement>>;
