/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Defines the possible size options of the ListBox. * The size affects the height of the listbox and the size of the items. */ export type ListBoxSize = 'small' | 'medium' | 'large';