import type { Table } from "@tanstack/react-table";
export interface GroupDropAreaProps {
    table: Table<any>;
    enableGrouping: boolean;
    className: string;
}
export declare function GroupDropArea(props: GroupDropAreaProps): import("react/jsx-runtime").JSX.Element | null;
