import type { Column } from "../+types";
import type { PathBranch, PathLeaf } from "@1771technologies/lytenyte-shared";
export interface TreeItemContextValue {
    readonly item: PathBranch<Column<any>> | PathLeaf<Column<any>>;
}
export declare const ColumnItemContext: import("react").Context<TreeItemContextValue>;
export declare const useColumnItemContext: () => TreeItemContextValue;
