@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 520 B
TypeScript
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<HTMLLIElement> & {
index: number;
option: W3CInputValue;
selected: boolean;
ref?: ((elm?: HTMLLIElement | undefined) => void) | undefined;
};
declare const CustomSuggestionsOptionFc: FC<CustomSuggestionsProps>;
export default CustomSuggestionsOptionFc;