import type { AnchorHTMLAttributes } from 'react';
export type LinkBaseProps = AnchorHTMLAttributes & {
testID?: string;
openInNewTab?: boolean;
disabled?: boolean;
skipNextLink?: boolean;
};
export declare const LinkBase: import("react").ForwardRefExoticComponent & {
testID?: string;
openInNewTab?: boolean;
disabled?: boolean;
skipNextLink?: boolean;
} & import("react").RefAttributes>;