import { ContextValue, RenderProps } from './../../utils'; import React, { HTMLAttributes } from 'react'; import { PlacementAxis } from 'react-aria'; interface OverlayArrowContextValue extends OverlayArrowProps { placement: PlacementAxis | null; } export declare const OverlayArrowContext: React.Context>; export interface OverlayArrowProps extends Omit, 'className' | 'style' | 'children'>, RenderProps { } export interface OverlayArrowRenderProps { /** * The placement of the overlay relative to the trigger. * @selector [data-placement="left | right | top | bottom"] */ placement: PlacementAxis | null; } declare function OverlayArrow({ ref, ...props }: OverlayArrowProps & { ref?: React.RefObject; }): import("react/jsx-runtime").JSX.Element; export { OverlayArrow }; //# sourceMappingURL=OverlayArrow.d.ts.map