import { PopoverContentProps } from '../Popover'; import React from 'react'; export type SelectOptionsClassNames = { list?: string; listBoxOption?: string; }; export interface SelectOptionsProps extends PopoverContentProps { listId?: string; height?: string | number; classNames?: SelectOptionsClassNames; children?: React.ReactNode; listStyle?: React.CSSProperties; } export declare function SelectOptions({ listId, height, classNames, listStyle, style, className, onScroll, ...props }: SelectOptionsProps): import("react/jsx-runtime").JSX.Element; export declare namespace SelectOptions { var displayName: string; }