import { ReactNode } from "react"; import { GroupProps } from "@react-three/fiber"; type AnchorProps = { href: string; target?: string; children: ReactNode | ReactNode[]; } & GroupProps; export declare function Anchor(props: AnchorProps): import("react").JSX.Element; export {};