import { LinkProps } from 'react-router'; import { UIButtonVariant } from 'types/UserInterface'; export interface LinkButtonProps extends Omit { /** The variant of the button. */ variant: UIButtonVariant; } /** Represents a button that is used as a Link within react-router. * * Only works when rendered inside a 'react-router' BrowserRouter */ export declare const LinkButton: import('react').ForwardRefExoticComponent>;