/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * @hidden */ export declare const INITIAL_ZOOM_LEVEL = 1.25; /** * @hidden */ export declare const MIN_ZOOM_LEVEL = 0.5; /** * @hidden */ export declare const MAX_ZOOM_LEVEL = 4; /** * @hidden */ export declare const zoomOptionsData: ({ id: number; text: string; type: string; displayValue: string; value: number; } | { id: number; text: string; displayValue: string; value: number; type?: undefined; })[]; /** * @hidden */ export declare const zoomToFitOptions: { fitToPage: string; fitToWidth: string; };