import React from 'react'; import './Clickable.scss'; type ButtonElProps = React.ButtonHTMLAttributes; type AnchorElProps = React.AnchorHTMLAttributes; type RouterLinkProps = Omit, 'href'> & { to: string | { pathname?: string; search?: string; hash?: string; }; replace?: boolean; innerRef?: React.Ref; }; export type ClickableProps = { disabled?: boolean; styleless?: boolean; } & (ButtonElProps | AnchorElProps | RouterLinkProps); export declare const Clickable: React.ForwardRefExoticComponent>; export {};