import * as React from 'react'; export interface ContextMenuAnchorPoint { x: number; y: number; } export interface ContextMenuRootContext { /** * The screen point the menu is anchored to — where the long press landed. */ anchor: ContextMenuAnchorPoint; setAnchor: (point: ContextMenuAnchorPoint) => void; } export declare const ContextMenuRootContext: React.Context; export declare function useContextMenuRootContext(): ContextMenuRootContext; //# sourceMappingURL=ContextMenuRootContext.d.ts.map