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 pointing at the anchor an anchored toast belongs to. * Renders a ``. */ export declare function ToastArrow(componentProps: ToastArrow.Props): React.ReactElement>; export interface ToastArrowState { side: PhysicalSide; align: Align; } export interface ToastArrowProps extends ZestUIComponentProps { } export declare namespace ToastArrow { type State = ToastArrowState; type Props = ToastArrowProps; } //# sourceMappingURL=ToastArrow.d.ts.map