/** * SPDX-FileCopyrightText: © 2021 Liferay, Inc. * SPDX-License-Identifier: BSD-3-Clause */ import React from 'react'; import type { Value } from './DragAndDrop'; declare type Props = { children: React.ReactNode; value: Omit & { index: number; }; }; export declare function ItemContextProvider({ children, value }: Props): JSX.Element; export declare function useItem(): Value; export {};