import type { PropsWithChildren } from "react";
import type { Column, Grid } from "../+types";
import type { PathBranch } from "@1771technologies/lytenyte-shared";
export interface ColumnManagerRootProps<T> {
    readonly grid: Grid<T>;
    readonly lookup: Record<string, PathBranch<Column<any>>>;
}
export declare function Root<T>({ grid, lookup, children }: PropsWithChildren<ColumnManagerRootProps<T>>): import("react/jsx-runtime").JSX.Element;
