/// import { BorderProps, ColorProps, FlexboxProps, LayoutProps, SpaceProps, TypographyProps } from "styled-system"; export declare type ActionAnchorProps = FlexboxProps & LayoutProps & SpaceProps & ColorProps & BorderProps & TypographyProps & { disabled?: boolean; destructive?: boolean; }; export declare const ActionAnchor: import("styled-components").StyledComponent<"a", any, import("react").PropsWithChildren, never>;