import { AnchorHTMLAttributes } from "react";
export interface AProps extends AnchorHTMLAttributes<any> {
    transparent?: boolean;
    dense?: boolean;
    name?: string;
}
export declare const ACustomProps: string[];
export declare const A: (props: AProps) => import("react/jsx-runtime").JSX.Element;
