import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import type { JSXBase } from '../../stencil-public-runtime'; import type { W3CInputValue } from '../../schema'; export type CustomSuggestionsProps = JSXBase.HTMLAttributes & { disabled: boolean; index: number; option: W3CInputValue; selected: boolean; searchTerm?: string; ref?: ((elm?: HTMLLIElement | undefined) => void) | undefined; }; declare const CustomSuggestionsOptionFc: FC; export default CustomSuggestionsOptionFc;