import type * as React from 'react'; import { View } from 'react-native'; import type { Align, PhysicalSide } from '../../utils/useAnchorPositioning'; import type { ZestUIComponentProps } from '../../types'; /** * Displays an element positioned against the menu anchor. * Renders a ``. */ export declare function MenuArrow(componentProps: MenuArrow.Props): React.ReactElement>; export interface MenuArrowState { open: boolean; side: PhysicalSide; align: Align; } export interface MenuArrowProps extends ZestUIComponentProps { } export declare namespace MenuArrow { type State = MenuArrowState; type Props = MenuArrowProps; } //# sourceMappingURL=MenuArrow.d.ts.map