@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
18 lines (17 loc) • 671 B
TypeScript
import React from 'react';
import { MenuProps, GetOptionProps } from '../utils/use-select';
import { DropdownOption } from '../../internal/components/option/interfaces';
export interface SelectListProps {
menuProps: MenuProps;
getOptionProps: GetOptionProps;
filteredOptions: DropdownOption[];
filteringValue: string;
isKeyboard: boolean;
dropdownStatus: React.ReactNode;
checkboxes?: boolean;
}
export declare namespace SelectListProps {
type SelectListRef = (index: number) => void;
}
declare const _default: React.ForwardRefExoticComponent<SelectListProps & React.RefAttributes<SelectListProps.SelectListRef>>;
export default _default;