import { ComponentSize } from '../../atoms/types'; import { ComponentProps } from 'react'; export declare const avatarStyles: (props?: ({ size?: "m" | "s" | "l" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type AvatarData = { src?: string; name?: string; }; export type AvatarProps = ComponentProps<'div'> & ComponentSize & AvatarData; //# sourceMappingURL=types.d.ts.map