/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
export interface PageSizeItem {
    /**
     * Specifies the text that represents each available option in the page sizes dropdown list.
     */
    text: string;
    /**
     * Specifies the numeric value that you use as page size.
     * When you set the value to `all`, the page size becomes the total number of items.
     */
    value: number | 'all';
}
