import type { Generic } from 'adopted-style-sheets'; export declare const inputDateTypeOptions: readonly ["date", "datetime-local", "month", "time", "week"]; export type InputDateTypePropType = (typeof inputDateTypeOptions)[number]; export type PropTypeInputDate = { type: InputDateTypePropType; }; export declare const validateTypeInputDate: (component: Generic.Element.Component, value?: InputDateTypePropType) => void;