UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

20 lines 860 B
import React from 'react'; import { BaseComponentProps } from '../internal/base-component'; import { HighlightType } from '../internal/components/options-list/utils/use-highlight-option'; import { AutosuggestItem } from './interfaces'; interface AutosuggestOptionProps extends BaseComponentProps { nativeAttributes?: React.HTMLAttributes<HTMLDivElement>; highlightText: string; option: AutosuggestItem; highlighted: boolean; highlightType: HighlightType; current: boolean; virtualPosition?: number; padBottom?: boolean; screenReaderContent?: string; ariaSetsize?: number; ariaPosinset?: number; } declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<AutosuggestOptionProps & React.RefAttributes<HTMLDivElement>>>; export default _default; //# sourceMappingURL=autosuggest-option.d.ts.map