import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import type { JSXBase } from '../../stencil-public-runtime';
import type { W3CInputValue } from '../../schema';
export type SuggestionsProps = JSXBase.HTMLAttributes<HTMLDataListElement> & {
    id: string;
    suggestions: W3CInputValue[];
};
declare const SuggestionsFc: FC<SuggestionsProps>;
export default SuggestionsFc;
