/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Defines the type that the pager [`position`](https://www.telerik.com/kendo-angular-ui/components/listview/api/pagersettings#position) property accepts. * Specifies whether the pager appears above the content container, beneath it, or in both places * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/paging#pager-options)). * * @default 'bottom' */ export type PagerPosition = 'bottom' | 'top' | 'both';