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