import { Component } from 'react'; import type { ImageStyle, StyleProp, ViewStyle } from 'react-native'; export interface ShareBlockProps { dialogTitle?: string; message: string; shareTitle: string; url: string; imageSrc?: string; underlayColor?: string; imageStyle?: StyleProp; containerStyle?: StyleProp; } export default class ShareBlock extends Component { private readonly onButtonPress; shouldComponentUpdate(nextProps: ShareBlockProps): boolean; render(): JSX.Element; }