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 ;
menuProps: P;
menuSize: {
width: number;
height: number;
};
anim: SharedValue (props: ContextualRootViewProps ): React.JSX.Element;
//# sourceMappingURL=ContextualRootView.d.ts.map