import type { Generic } from 'adopted-style-sheets'; export declare const inputTextTypeOptions: readonly ["text", "search", "url", "tel"]; export type InputTextTypePropType = (typeof inputTextTypeOptions)[number]; export type PropTypeInputText = { type: InputTextTypePropType; }; export declare const validateTypeInputText: (component: Generic.Element.Component, value?: InputTextTypePropType) => void;