/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * @hidden * * Checks if the selection spans an entire row (all columns selected). * Used to disable column insert/delete tools when a full row is selected. */ export declare function isFullRowSelection(ref: any, grid: any): boolean; /** * @hidden * * Checks if the selection spans an entire column (all rows selected). * Used to disable row insert/delete tools when a full column is selected. */ export declare function isFullColumnSelection(ref: any, grid: any): boolean;