import { Theme } from './types'; export declare function Profile({ profileId, ethereumAddress, handle, onClick, theme, containerStyle, followButtonStyle, followButtonContainerStyle, followButtonBackgroundColor, followButtonTextColor, hideFollowButton, onFollowPress }: { profileId?: string; handle?: string; ethereumAddress?: string; onClick?: () => void; theme?: Theme; containerStyle?: {}; followButtonStyle?: {}; followButtonContainerStyle?: {}; followButtonBackgroundColor?: string; followButtonTextColor?: string; hideFollowButton?: boolean; onFollowPress?: (event: any) => void; }): import("react/jsx-runtime").JSX.Element | null;