interface AnchorProps {
    href: string;
    spaceAfter?: boolean;
    spaceBefore?: boolean;
    text: string;
}
export declare function Anchor({ href, spaceAfter, spaceBefore, text }: AnchorProps): import("react/jsx-runtime").JSX.Element;
export {};
