/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { ScrollViewProps } from './ScrollViewProps.js'; import * as React from 'react'; /** * The ScrollView ref. */ export interface ScrollViewHandle { /** * The ScrollView element. */ element: HTMLDivElement | null; /** * Focus the ScrollView. */ focus: () => void; } /** * Represents the [KendoReact ScrollView component](https://www.telerik.com/kendo-react-ui/components/scrollview). * * @example * ```jsx * const App = () => { * const items: any[] = [ * { position: 1, url: 'https://demos.telerik.com/kendo-ui/content/web/scrollview/image1.jpg' }, * { position: 2, url: 'https://demos.telerik.com/kendo-ui/content/web/scrollview/image2.jpg' }, * { position: 3, url: 'https://demos.telerik.com/kendo-ui/content/web/scrollview/image3.jpg' } * ]; * return ( * * {items.map((item, index) => { * return ( * * Showing image {item.position} of {items.length}. * * * ); * })} * * ); * }; * ``` */ export declare const ScrollView: React.ForwardRefExoticComponent>;
Showing image {item.position} of {items.length}.