import React from 'react'; import { ViewStyle } from 'react-native'; import type { Post } from '../../hooks/Circles/types'; import { AvatarIconProps } from 'react-native-paper'; type Props = { post: Post; size: number; fallbackIcon: AvatarIconProps['icon']; style?: ViewStyle; }; export declare const ProfileImage: ({ post, size, fallbackIcon, style }: Props) => React.JSX.Element; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["ProfileImage", import("../BrandConfigProvider/styles/createStyles").NamedStyles<{ fallbackIconView: { backgroundColor: string; }; }>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type ProfileImageStyle = NamedStylesProp; export {};