/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the size of a color cell in the ColorPalette component.
 */
export interface TileSize {
    /**
     * The width of the tile in pixels.
     */
    width: number;
    /**
     * The height of the tile in pixels.
     */
    height: number;
}
