import React from 'react'; import './assets/ShareButton.scss'; import { Size, Variant } from "./Button"; export declare const ShareButton: React.FC; export interface ShareButtonProps { variant?: Variant; size?: Size; title: string; children?: any; }