import * as React from 'react'; export interface ProfileCardProps extends React.HTMLAttributes { name: string; role: string; department?: string; avatar?: string; initials: string; status?: 'online' | 'offline' | 'away' | 'busy'; stats?: Array<{ label: string; value: string | number; }>; primaryAction?: { label: string; onClick?: () => void; }; secondaryAction?: { label: string; onClick?: () => void; }; } export declare function ProfileCard({ name, role, department, avatar, initials, status, stats, primaryAction, secondaryAction, className, ...props }: ProfileCardProps): import("react/jsx-runtime").JSX.Element;