import React from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; import { type SharedValue } from 'react-native-reanimated'; export interface ContextualRootViewProps

{ offsetTop?: number; offsetBottom?: number; offsetRight?: number; background?: React.ReactNode; view: React.ReactNode; viewLayout: { x: number; y: number; width: number; height: number; }; viewStyle: StyleProp; Menu: React.ComponentType

; menuProps: P; menuSize: { width: number; height: number; }; anim: SharedValue; scroll: SharedValue; scaleAnim: SharedValue; } export declare function ContextualRootView

(props: ContextualRootViewProps

): React.JSX.Element; //# sourceMappingURL=ContextualRootView.d.ts.map