/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the type of the `Pager`.
 *
 * The available values are:
 * * `numeric`&mdash;Displays buttons with numbers.
 * * `input`&mdash;Displays an input field for typing the page number.
 *
 * @example
 * ```html
 * <kendo-pager type="input">
 * </kendo-pager>
 * ```
 */
export type PagerType = 'numeric' | 'input';
