import type { Generic } from 'adopted-style-sheets'; export declare const autoCompleteOptions: readonly ["on", "off"]; export type AutoCompletePropType = (typeof autoCompleteOptions)[number] | string; export type PropAutoComplete = { autoComplete: AutoCompletePropType; }; export declare const validateAutoComplete: (component: Generic.Element.Component, value?: AutoCompletePropType) => void;