/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { InputHTMLAttributes } from 'react'; export declare const dateInputTypes: readonly ["date", "datetime-local"]; type DateInputType = (typeof dateInputTypes)[number]; export type DateInputProps = { /** Whether the value fails a validation rule. */ readonly invalid?: boolean; /** The kind of data that the user should provide. */ readonly type?: DateInputType; } & Readonly, 'aria-invalid' | 'type'>>; /** * Helps users enter a date. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-date-input--docs Date Input docs at Amsterdam Design System} */ export declare const DateInput: import("react").ForwardRefExoticComponent<{ /** Whether the value fails a validation rule. */ readonly invalid?: boolean; /** The kind of data that the user should provide. */ readonly type?: DateInputType; } & Readonly, "aria-invalid" | "type">> & import("react").RefAttributes>; export {};