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