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