@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
8 lines (7 loc) • 411 B
TypeScript
import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import type { JSXBase } from '../../stencil-public-runtime';
export type CustomSuggestionsOptionsGroupProps = JSXBase.HTMLAttributes<HTMLUListElement> & {
blockSuggestionMouseOver: boolean;
};
declare const CustomSuggestionsOptionsGroupFc: FC<CustomSuggestionsOptionsGroupProps>;
export default CustomSuggestionsOptionsGroupFc;