export type ProfileProps = { firstName: string; lastName: string; image?: string | null; size?: ProfileSizeVariant; editable?: boolean; onEdit?: () => void; }; export type ProfileSizeVariant = 'xl' | 'lg' | 'md' | 'sm' | 'xs'; export declare const Profile: ({ firstName, lastName, image, size, editable, onEdit }: ProfileProps) => import("react").JSX.Element;