import type { ComponentProps, PropsWithChildren } from "react"; type PopperArrowProps = ComponentProps<"div"> & { 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;