@awsui/components-react
Version:
AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A
13 lines (12 loc) • 561 B
TypeScript
import { AutosuggestProps } from './interfaces';
import React from 'react';
import { BaseComponentProps } from '../internal/base-component';
export interface AutosuggestOptionProps extends BaseComponentProps {
highlightText: string;
option: AutosuggestProps.AutosuggestItem;
highlighted: boolean;
enteredTextLabel: (value: string) => string;
virtualPosition?: number;
}
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<AutosuggestOptionProps & React.RefAttributes<HTMLDivElement>>>;
export default _default;