import React from 'react'; import { ShareProps } from './types'; declare const Share: { (props: ShareProps): React.JSX.Element; defaultProps: { size: string; facebookPath: string; twitterPath: string; whatsappPath: string; }; }; export default Share;