import React from 'react'; interface IProps { target: '_blank' | '_parent'; href: string; children?: React.ReactNode; className?: string; style?: React.CSSProperties; } export declare const AlfaAnchor: (props: IProps) => React.JSX.Element; export {};