import React, { HTMLAttributes } from 'react';
export type LinkButtonProps = Omit, HTMLAnchorElement>, 'href' | 'onClick'> & {
onClick?(e: React.MouseEvent): void;
};
/**
* A quick way to create an element that looks like a link but behaves
* like a button.
*/
export declare const LinkButton: React.ForwardRefExoticComponent & React.RefAttributes>;