import * as React from 'react'; export interface ButtonProps extends React.AnchorHTMLAttributes { } export declare class Button extends React.Component { el: HTMLAnchorElement | null; constructor(props: ButtonProps); /** * Initialisation of the wave effect after the component did mount */ componentDidMount(): void; render(): JSX.Element; }