import * as React from 'react'; import type { Group } from './hooks/useGroupSegments'; export interface GroupHeaderProps { group: Group; groupKey: K; groupItems: T[]; prefixCls: string; fixed?: boolean; sticky?: boolean; className?: string; style?: React.CSSProperties; } declare const GroupHeaderWithRef: (props: GroupHeaderProps & { ref?: React.Ref; }) => React.ReactElement; export default GroupHeaderWithRef;