import { Primitive } from "@loke/ui/primitive"; import { type ComponentPropsWithoutRef } from "react"; type PrimitiveSvgProps = ComponentPropsWithoutRef; type ArrowProps = PrimitiveSvgProps; /** * Arrow component renders a customizable SVG arrow. */ declare const Arrow: import("react").ForwardRefExoticComponent & { asChild?: boolean; }, "ref"> & import("react").RefAttributes>; declare const Root: import("react").ForwardRefExoticComponent & { asChild?: boolean; }, "ref"> & import("react").RefAttributes>; export { Arrow, Root, }; export type { ArrowProps };