/** * @jsxRuntime classic * @jsx jsx */ import { type ForwardRefExoticComponent, type ReactNode, type RefAttributes } from 'react'; /** * A drop indicator to be used when dragging over a group of items */ export declare const GroupDropIndicator: ForwardRefExoticComponent<{ children: ReactNode; isActive: boolean; testId?: string; } & RefAttributes>;