import { ComponentProps } from 'react'; import { AvatarData } from '../Avatar/types'; import { ComponentSize } from '../../atoms/types'; export declare const userInfoVariants: (props?: ({ avatarPosition?: "left" | "right" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const userInfoRoleVariants: (props?: ({ size?: "m" | "s" | "l" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const userInfoNameVariants: (props?: ({ size?: "m" | "s" | "l" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type UserInfoProps = ComponentProps<'div'> & ComponentSize & AvatarData & { role?: string; avatarPosition?: 'left' | 'right'; }; //# sourceMappingURL=types.d.ts.map