///
import { ColorProps, LayoutProps, SpaceProps, TypographyProps, BorderProps, FlexboxProps } from "styled-system";
export declare type AnchorProps = BorderProps & FlexboxProps & ColorProps & LayoutProps & SpaceProps & TypographyProps & {
gray?: boolean;
bold?: boolean;
mono?: boolean;
underline?: boolean;
textDecoration?: string;
};
export declare const Anchor: import("styled-components").StyledComponent<"a", any, import("react").PropsWithChildren, never>;
export declare const asAnchor: (component: React.FC) => import("styled-components").StyledComponent, any, import("react").PropsWithChildren, never>;