export default SocialButton; /** Social networks share button with title */ declare function SocialButton({ dataHook, text, onClick, icon, disabled }: { dataHook: any; text: any; onClick: any; icon: any; disabled: any; }): React.JSX.Element; declare namespace SocialButton { namespace propTypes { let dataHook: PropTypes.Requireable; let text: PropTypes.Requireable; let onClick: PropTypes.Requireable<(...args: any[]) => any>; let icon: PropTypes.Requireable; let disabled: PropTypes.Requireable; } let displayName: string; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=SocialButton.d.ts.map