import * as React from 'react'; export declare function isTrivialHref(href?: string): boolean; export interface AnchorProps extends React.HTMLAttributes { href?: string; disabled?: boolean; role?: string; tabIndex?: number; } /** * An generic `` component that covers a few A11y cases, ensuring that * cases where the `href` is missing or trivial like "#" are treated like buttons. */ declare const Anchor: React.ForwardRefExoticComponent>; export default Anchor;