export declare type Size = 'small' | 'medium' | 'large'; interface DefaultProps { /** The size of the avatar */ size: Size; } export declare const getDimensions: ({ size }: DefaultProps) => "36px" | "48px" | "64px"; export declare const StyledAvatar: import("styled-components").StyledComponent<"img", any, DefaultProps, never>; export declare const AvatarContainer: import("styled-components").StyledComponent<"div", any, DefaultProps, never>; export declare const DefaultAvatarContainer: import("styled-components").StyledComponent<"div", any, DefaultProps, never>; export {};