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.ComponentClass & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }, any> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<(React.ComponentClass & { ({ label, size, style, theme, labelStyle, color: customColor, ...rest }: Props): JSX.Element; displayName: string; }) | (React.FunctionComponent & { ({ label, size, style, theme, labelStyle, color: customColor, ...rest }: Props): JSX.Element; displayName: string; }), {}>) | (React.FunctionComponent & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<(React.ComponentClass & { ({ label, size, style, theme, labelStyle, color: customColor, ...rest }: Props): JSX.Element; displayName: string; }) | (React.FunctionComponent & { ({ label, size, style, theme, labelStyle, color: customColor, ...rest }: Props): JSX.Element; displayName: string; }), {}>); export default _default;