/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ export type GridPagerType = 'numeric' | 'input'; export interface GridPagerSettings { pageSizeValue?: string | number; buttonCount?: number; info?: boolean; type?: GridPagerType; pageSizes?: boolean | Array | Array; previousNext?: boolean; responsive?: boolean; adaptive?: boolean; adaptiveTitle?: string; navigatable?: boolean; } export declare const normalize: (settings: any) => any;