import { type SpectrumListViewProps } from '@adobe/react-spectrum'; import { type MultipleItemSelectionProps, type NormalizedItem, type TooltipOptions } from '../utils'; import { type ItemElementOrPrimitive } from '../shared'; export type ListViewProps = MultipleItemSelectionProps & { children: ItemElementOrPrimitive | ItemElementOrPrimitive[]; /** Can be set to true or a TooltipOptions to enable item tooltips */ tooltip?: boolean | TooltipOptions; /** Handler that is called when the picker is scrolled. */ onScroll?: (event: Event) => void; } & Omit, 'children' | 'items' | 'selectedKeys' | 'defaultSelectedKeys' | 'disabledKeys' | 'onSelectionChange'>; export declare function ListView({ children, tooltip, selectedKeys, defaultSelectedKeys, disabledKeys, UNSAFE_className, onChange, onScroll, onSelectionChange, ...spectrumListViewProps }: ListViewProps): JSX.Element | null; export default ListView; //# sourceMappingURL=ListView.d.ts.map