import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; export interface ShareButtonProps { onShare: () => void | Promise; label?: string; style?: StyleProp; color?: string; size?: number; } declare const ShareButton: React.MemoExoticComponent<({ onShare, label, style, color, size, }: ShareButtonProps) => React.JSX.Element>; export default ShareButton;