import * as React from 'react'; import { View, ViewStyle, StyleProp, TextStyle } from 'react-native'; declare type Props = React.ComponentPropsWithRef & { /** * Initials to show as the text in the `Avatar`. */ label: string; /** * Size of the avatar. */ size?: number; /** * Custom color for the text. */ color?: string; /** * Style for text container */ style?: StyleProp; /** * Style for the title. */ labelStyle?: StyleProp; /** * @optional */ theme: ReactNativePaper.Theme; }; declare const _default: React.ComponentType & { /** * Initials to show as the text in the `Avatar`. */ label: string; /** * Size of the avatar. */ size?: number | undefined; /** * Custom color for the text. */ color?: string | undefined; /** * Style for text container */ style?: StyleProp; /** * Style for the title. */ labelStyle?: StyleProp; /** * @optional */ theme: ReactNativePaper.Theme; }, "label" | "color" | "size" | keyof import("react-native").ViewProps | keyof React.RefAttributes | "labelStyle"> & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & { /** * Initials to show as the text in the `Avatar`. */ label: string; /** * Size of the avatar. */ size?: number | undefined; /** * Custom color for the text. */ color?: string | undefined; /** * Style for text container */ style?: StyleProp; /** * Style for the title. */ labelStyle?: StyleProp; /** * @optional */ theme: ReactNativePaper.Theme; }> & { ({ label, size, style, theme, labelStyle, color: customColor, ...rest }: Props): JSX.Element; displayName: string; }, {}>; export default _default;