import { Variants } from '../Typography/Typography.constants.js';
import 'react';

declare const GROUP_NAME = "avatar";
declare enum Sizes {
    S = "s",
    M = "m",
    L = "l",
    XL = "xl",
    Fluid = "fluid"
}
declare const DEFAULT_SIZE = Sizes.M;
declare const sizeToTypographyVariant: Record<Sizes, `${Variants}`>;

export { DEFAULT_SIZE, GROUP_NAME, Sizes, sizeToTypographyVariant };
