import type { Generic } from 'adopted-style-sheets'; import type { W3CInputValue } from '../types'; import type { Stringified } from '../types/common'; export type SuggestionsPropType = Stringified; export type PropSuggestions = { suggestions: SuggestionsPropType; }; export declare const validateSuggestions: (component: Generic.Element.Component, value?: SuggestionsPropType) => void;