@progress/kendo-react-common
Version:
React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package
24 lines (23 loc) • 1.03 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2023 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------*/
import * as React from 'react';
import { DragTarget, DropTarget } from '@progress/kendo-draggable-common';
import { ControlledStateHook } from '../../hooks';
/**
* @hidden
*/
export declare const DragContext: React.Context<ControlledStateHook<React.RefObject<DragTarget> | null | undefined>>;
/**
* @hidden
*/
export declare const DropContext: React.Context<ControlledStateHook<React.RefObject<DropTarget> | null | undefined>>;
/**
* @hidden
*/
export declare const DragsContext: React.Context<[React.RefObject<DragTarget>[], Function, Function]>;
/**
* @hidden
*/
export declare const DropsContext: React.Context<[React.RefObject<DropTarget>[], Function, Function]>;