import { default as React } from 'react'; import { IconName } from '../icon'; type Variant = 'beige' | 'grey' | 'purple-light' | 'white' | 'orange' | 'blue' | 'green'; export type RootProps = React.ComponentPropsWithoutRef<'div'> & { variant?: Variant; firstName?: string; lastName?: string; icon?: IconName; }; export declare const Root: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { variant?: Variant; firstName?: string; lastName?: string; icon?: IconName; } & React.RefAttributes>; export {};