import type { PropsWithChildren } from "react"; import type { PopperArrowProps as ReactPopperArrowProps } from "react-popper"; type PopperArrowProps = ReactPopperArrowProps & { placement?: string; borderColor?: string; backgroundColor?: string; }; declare const PopperArrow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, PropsWithChildren>> & string; export default PopperArrow;