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;
