import type * as React from 'react'; import type { ImageSourcePropType } from 'react-native'; type AvatarProps = { size?: number; source: ImageSourcePropType; }; /** * Avatar component that shows round icon of a given image * * ```js * import * as React from 'react' * import { View } from 'react-native'; * import { Avatar } from 'react-native-sketchbook' * * export const Example = () => { * return ( * * * * ) * } * ``` */ export declare const Avatar: React.FC; export {}; //# sourceMappingURL=Avatar.d.ts.map