import { type SpectrumListViewProps } from '@adobe/react-spectrum'; import './ListViewWrapper.scss'; export interface ListViewWrapperProps extends SpectrumListViewProps { /** Handler that is called when the picker is scrolled. */ onScroll?: (event: Event) => void; } /** * Helper component to wrap a ListView with the appropriate styling + scroll * handling. This is used by both the `@deephaven/components` `ListView` and * the `@deephaven/jsapi-components` `ListView` (via `ListViewNormalized`) to * ensure consistency. * * Note that This component will usually not be used directly. Instead, it is * recommended to use * - `@deephaven/components`'s `ListView` for non-table data sources * - `@deephaven/jsapi-components`'s `ListView` for table data sources */ export declare function ListViewWrapper(props: ListViewWrapperProps): JSX.Element; export default ListViewWrapper; //# sourceMappingURL=ListViewWrapper.d.ts.map