/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * The props of the GridToolbarProps component. */ export interface GridToolbarProps { /** * Configures the `size` of the Grid. * * The available options are: * - small * - medium * * @default `medium` */ size?: 'small' | 'medium' | string; }