import { type SizeType } from './types'; export type AvatarContextProps = { size: SizeType; }; /** * __Avatar context__ * * An avatar context that provides the size of the avatar to children. Used by AvatarGroup * * - [Examples](https://atlassian.design/components/avatar/examples) * - [Code](https://atlassian.design/components/avatar/code) * - [Usage](https://atlassian.design/components/avatar/usage) */ export declare const AvatarContext: import('react').Context;