/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as React from 'react'; /** * Represents the props of the GroupStickyHeader component. */ export interface GroupStickyHeaderProps { /** * The group that will be rendered. */ group?: string; /** * Fires when a ComboBox sticky group header item is about to be rendered. Used to override the default appearance of the sticky group header of the component. */ render?: (div: React.ReactElement, itemProps: GroupStickyHeaderProps) => React.ReactNode; } /** * @hidden */ declare const GroupStickyHeader: (props: GroupStickyHeaderProps) => string | number | bigint | boolean | Iterable | Promise> | Iterable | null | undefined> | React.JSX.Element | null | undefined; export default GroupStickyHeader;