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 tooltip anchor. * Renders a ``. */ export declare function TooltipArrow(componentProps: TooltipArrow.Props): React.ReactElement>; export interface TooltipArrowState { open: boolean; side: PhysicalSide; align: Align; } export interface TooltipArrowProps extends ZestUIComponentProps { } export declare namespace TooltipArrow { type State = TooltipArrowState; type Props = TooltipArrowProps; } //# sourceMappingURL=TooltipArrow.d.ts.map